Unicode Finder

"⯃" U+2BC3(HORIZONTAL BLACK OCTAGON)

U+2BC3
Block Name
Miscellaneous Symbols and Arrows
Name
HORIZONTAL BLACK OCTAGON

Programming

C
\u2BC3
JavaScript
\u2BC3
Java
\u2BC3
Json
\u2BC3
Python
\u2BC3
Perl
\x{2BC3}
PHP
\x{2BC3}
Ruby
\u{2BC3}
Rust
\u{2BC3}
Go
\u2BC3

Web

CSS
\002BC3
HtmlDecimal
⯃
HtmlHexadecimal
⯃
Url
%E2%AF%83

Code

MD5
f9835e8a4de6c708632ea2a44cbbf565
Sha1
ffb6ead9c313f4acad9fffced8cd04884cd42a9d
Base64
4q+D

Usage Examples

Programming Languages

C:

char c = '\u2BC3';
printf("%c\n", c);  // Output: ⯃

JavaScript:

const char = '\u2BC3';
console.log(char);  // Output: ⯃

Java:

char c = '\u2BC3';
System.out.println(c);  // Output: ⯃

JSON:

{"text": "\u2BC3"}  // Value: ⯃

Python:

char = '\u2BC3'
print(char)  # Output: ⯃

Perl:

my $char = "\x{2BC3}";
print $char;  # Output: ⯃

PHP:

$char = "\x{2BC3}";
echo $char;  // Output: ⯃

Ruby:

char = "\u{2BC3}"
puts char  # Output: ⯃

Rust:

let c = '\u{2BC3}';
println!("{}", c);  // Output: ⯃

Go:

char := '\u2BC3'
fmt.Printf("%c\n", char)  // Output: ⯃

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002BC3";  /* Display: ⯃ */
}

HTML Decimal:

<p>HTML decimal: &#11203;</p>  <!-- Display: ⯃ -->

HTML Hexadecimal:

<p>HTML hex: &#x2BC3;</p>  <!-- Display: ⯃ -->

URL Encoding:

// ⯃ URL encoding
https://unicodefinder.com/search.php?query=%E2%AF%83

Encodings

MD5:

f9835e8a4de6c708632ea2a44cbbf565

SHA1:

ffb6ead9c313f4acad9fffced8cd04884cd42a9d

Base64:

4q+D