Negative Circled Number Fifteen

Shortcodes

Copy and paste codes for Negative Circled Number Fifteen symbol ⓯ to use in your websites, apps, blogs, and more.

Unicode
U+24EF
HTML Code
⓯
HEX Code
⓯
CSS Code
\24EF
JS/JSON
\u24EF
Unix/C/PHP/JAVA
0x24EF
URL-encode
%E2%93%AF
copied

Customize ⓯ Symbol

Customize ⓯ symbol as you like and download Negative Circled Number Fifteen 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 type Negative Circled Number Fifteen symbol ⓯ ?

  • You can try inserting Negative Circled Number Fifteen symbol using these system tools:
    • Mac Character Viewer (Control + Command + Space)
    • Windows Emoji/Symbol Picker (Win + .)
    • Windows Character Map (charmap.exe)
  • Note: These tools may not include all Unicode symbols
  • Copy and paste the ⓯ symbol directly from this website.
  • Use provided codes for Negative Circled Number Fifteen symbol where they are supported.

How to add Negative Circled Number Fifteen symbol in HTML, CSS, and JS?

HTML Methods:

1. Direct Symbol:
<span>⓯</span>
2. HTML Decimal Code:
<span>&#9455;</span>
3. Hexadecimal Code:
<span>&#x24EF;</span>
Preview:

CSS Method:

.symbol::before {
    content: '\\24EF';
}
Preview: Symbol

JavaScript Methods:

1. Direct Symbol:
document.querySelector('.symbol').textContent = '⓯';
2. Unicode Escape:
document.querySelector('.symbol').textContent = '\u24EF';
Preview: