Unicode Finder

"⬒" U+2B12(SQUARE WITH TOP HALF BLACK)

U+2B12
Block Name
Miscellaneous Symbols and Arrows
Name
SQUARE WITH TOP HALF BLACK

Programming

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

Web

CSS
\002B12
HtmlDecimal
⬒
HtmlHexadecimal
⬒
Url
%E2%AC%92

Code

MD5
0c9c14ddad37819509ddb81a1da681e7
Sha1
8a267b9347d239e56453922483e391b9f4eb4549
Base64
4qyS

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2B12';
console.log(char);  // Output: ⬒

Java:

char c = '\u2B12';
System.out.println(c);  // Output: ⬒

JSON:

{"text": "\u2B12"}  // Value: ⬒

Python:

char = '\u2B12'
print(char)  # Output: ⬒

Perl:

my $char = "\x{2B12}";
print $char;  # Output: ⬒

PHP:

$char = "\x{2B12}";
echo $char;  // Output: ⬒

Ruby:

char = "\u{2B12}"
puts char  # Output: ⬒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11026;</p>  <!-- Display: ⬒ -->

HTML Hexadecimal:

<p>HTML hex: &#x2B12;</p>  <!-- Display: ⬒ -->

URL Encoding:

// ⬒ URL encoding
https://unicodefinder.com/search.php?query=%E2%AC%92

Encodings

MD5:

0c9c14ddad37819509ddb81a1da681e7

SHA1:

8a267b9347d239e56453922483e391b9f4eb4549

Base64:

4qyS