Semicolon

;

Shortcodes

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

Unicode
U+003B
Alt Code
59
HTML Code
&#59;
HEX Code
&#x003B;
CSS Code
\003B
JS/JSON
\u003B
Unix/C/PHP/JAVA
0x3B
URL-encode
%3B

Customize Semicolon

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

;
  

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

Insert in HTML

1. Direct symbol:
<span>;</span>
HTML Code:
<span>&#59;</span>
HEX Code:
<span>&#x003B;</span>

Add with CSS

.semicolon::before {
  content: '\\003B';
}

Set it in JavaScript

document.querySelector('.semicolon').textContent = ';';
copied