Unicode Finder

"⯄" U+2BC4(BLACK OCTAGON)

U+2BC4
Block Name
Miscellaneous Symbols and Arrows
Name
BLACK OCTAGON

Programming

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

Web

CSS
\002BC4
HtmlDecimal
⯄
HtmlHexadecimal
⯄
Url
%E2%AF%84

Code

MD5
31e0dcda369d7389bf171ff4894427ce
Sha1
a3f69c9e888bd2e75c1ff3e25f4f7984d0c85627
Base64
4q+E

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2BC4';
console.log(char);  // Output: ⯄

Java:

char c = '\u2BC4';
System.out.println(c);  // Output: ⯄

JSON:

{"text": "\u2BC4"}  // Value: ⯄

Python:

char = '\u2BC4'
print(char)  # Output: ⯄

Perl:

my $char = "\x{2BC4}";
print $char;  # Output: ⯄

PHP:

$char = "\x{2BC4}";
echo $char;  // Output: ⯄

Ruby:

char = "\u{2BC4}"
puts char  # Output: ⯄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11204;</p>  <!-- Display: ⯄ -->

HTML Hexadecimal:

<p>HTML hex: &#x2BC4;</p>  <!-- Display: ⯄ -->

URL Encoding:

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

Encodings

MD5:

31e0dcda369d7389bf171ff4894427ce

SHA1:

a3f69c9e888bd2e75c1ff3e25f4f7984d0c85627

Base64:

4q+E