Unicode Finder

"⬔" U+2B14(SQUARE WITH UPPER RIGHT DIAGONAL HALF BLACK)

U+2B14
Block Name
Miscellaneous Symbols and Arrows
Name
SQUARE WITH UPPER RIGHT DIAGONAL HALF BLACK

Programming

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

Web

CSS
\002B14
HtmlDecimal
⬔
HtmlHexadecimal
⬔
Url
%E2%AC%94

Code

MD5
7d5b8b92777d029edab611323dd8eccb
Sha1
79cced2f321996e89f34d03ec1f0df33d85911e8
Base64
4qyU

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2B14';
console.log(char);  // Output: ⬔

Java:

char c = '\u2B14';
System.out.println(c);  // Output: ⬔

JSON:

{"text": "\u2B14"}  // Value: ⬔

Python:

char = '\u2B14'
print(char)  # Output: ⬔

Perl:

my $char = "\x{2B14}";
print $char;  # Output: ⬔

PHP:

$char = "\x{2B14}";
echo $char;  // Output: ⬔

Ruby:

char = "\u{2B14}"
puts char  # Output: ⬔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11028;</p>  <!-- Display: ⬔ -->

HTML Hexadecimal:

<p>HTML hex: &#x2B14;</p>  <!-- Display: ⬔ -->

URL Encoding:

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

Encodings

MD5:

7d5b8b92777d029edab611323dd8eccb

SHA1:

79cced2f321996e89f34d03ec1f0df33d85911e8

Base64:

4qyU