Fullwidth Exclamation Mark

Shortcodes

Copy and paste codes for Fullwidth Exclamation Mark symbol ! to use in your websites, apps, blogs, and more.

Unicode
U+FF01
HTML Code
!
HEX Code
!
CSS Code
\FF01
JS/JSON
\uFF01
Unix/C/PHP/JAVA
0xFF01
URL-encode
%EF%BC%81
copied

Customize Fullwidth Exclamation Mark Symbol

Customize ! symbol as you like and download Fullwidth Exclamation Mark as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Fullwidth Exclamation Mark symbol in HTML, CSS, and JS?

Insert ! Fullwidth Exclamation Mark using HTML

1. Copy-paste Fullwidth Exclamation Mark directly:
<span>!</span>
2. HTML Decimal Code:
<span>&#65281;</span>
3. Hexadecimal Code:
<span>&#xFF01;</span>
Preview:

Add Fullwidth Exclamation Mark symbol with CSS

.fullwidth-exclamation-mark::before {
    content: '\\FF01';
}
Preview: Fullwidth Exclamation Mark

Fullwidth Exclamation Mark JavaScript Code

1. Direct Symbol:
document.querySelector('.fullwidth-exclamation-mark').textContent = '!';
2. Unicode Escape for !:
document.querySelector('.fullwidth-exclamation-mark').textContent = '\uFF01';
Preview: