Unicode Finder

"⯊" U+2BCA(TOP HALF BLACK CIRCLE)

U+2BCA
Block Name
Miscellaneous Symbols and Arrows
Name
TOP HALF BLACK CIRCLE

Programming

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

Web

CSS
\002BCA
HtmlDecimal
⯊
HtmlHexadecimal
⯊
Url
%E2%AF%8A

Code

MD5
7ed3d0bf1cdeeda7e761b57d3e9df9f6
Sha1
c3a8dfb625cf430497cd2bd876dc16c06496887b
Base64
4q+K

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2BCA';
console.log(char);  // Output: ⯊

Java:

char c = '\u2BCA';
System.out.println(c);  // Output: ⯊

JSON:

{"text": "\u2BCA"}  // Value: ⯊

Python:

char = '\u2BCA'
print(char)  # Output: ⯊

Perl:

my $char = "\x{2BCA}";
print $char;  # Output: ⯊

PHP:

$char = "\x{2BCA}";
echo $char;  // Output: ⯊

Ruby:

char = "\u{2BCA}"
puts char  # Output: ⯊

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11210;</p>  <!-- Display: ⯊ -->

HTML Hexadecimal:

<p>HTML hex: &#x2BCA;</p>  <!-- Display: ⯊ -->

URL Encoding:

// ⯊ URL encoding
https://unicodefinder.com/search.php?query=%E2%AF%8A

Encodings

MD5:

7ed3d0bf1cdeeda7e761b57d3e9df9f6

SHA1:

c3a8dfb625cf430497cd2bd876dc16c06496887b

Base64:

4q+K