And

Unicode Name: Ampersand

&

Shortcodes

Copy useful codes for and symbol & to use in websites, apps, blogs, and docs.

Unicode
U+0026
Alt Code
38
HTML Code
&
HTML Entity
&
HEX Code
&
CSS Code
\0026
JS/JSON
\u0026
Unix/C/PHP/JAVA
0x26
URL-encode
%26

Customize And

Customize &, download it as SVG or PNG, or copy the generated HTML snippet.

&
  

How to use And Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>&</span>
HTML Code:
<span>&#38;</span>
HTML Entity:
<span>&amp;</span>
HEX Code:
<span>&#x0026;</span>

Add with CSS

.and::before {
  content: '\\0026';
}

Set it in JavaScript

document.querySelector('.and').textContent = '&';
copied