Unicode Finder

"⬖" U+2B16(DIAMOND WITH LEFT HALF BLACK)

U+2B16
Block Name
Miscellaneous Symbols and Arrows
Name
DIAMOND WITH LEFT HALF BLACK

Programming

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

Web

CSS
\002B16
HtmlDecimal
⬖
HtmlHexadecimal
⬖
Url
%E2%AC%96

Code

MD5
2a42cc16947b842ba33a737ee9adc8cb
Sha1
57dc634c4b6eb3879711ae160f202faa075cf541
Base64
4qyW

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2B16';
console.log(char);  // Output: ⬖

Java:

char c = '\u2B16';
System.out.println(c);  // Output: ⬖

JSON:

{"text": "\u2B16"}  // Value: ⬖

Python:

char = '\u2B16'
print(char)  # Output: ⬖

Perl:

my $char = "\x{2B16}";
print $char;  # Output: ⬖

PHP:

$char = "\x{2B16}";
echo $char;  // Output: ⬖

Ruby:

char = "\u{2B16}"
puts char  # Output: ⬖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11030;</p>  <!-- Display: ⬖ -->

HTML Hexadecimal:

<p>HTML hex: &#x2B16;</p>  <!-- Display: ⬖ -->

URL Encoding:

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

Encodings

MD5:

2a42cc16947b842ba33a737ee9adc8cb

SHA1:

57dc634c4b6eb3879711ae160f202faa075cf541

Base64:

4qyW