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: ⬔
CSS:
/* CSS content property */
.element::before {
content: "\002B14"; /* Display: ⬔ */
}
HTML Decimal:
<p>HTML decimal: ⬔</p> <!-- Display: ⬔ -->
HTML Hexadecimal:
<p>HTML hex: ⬔</p> <!-- Display: ⬔ -->
URL Encoding:
// ⬔ URL encoding
https://unicodefinder.com/search.php?query=%E2%AC%94
MD5:
7d5b8b92777d029edab611323dd8eccb
SHA1:
79cced2f321996e89f34d03ec1f0df33d85911e8
Base64:
4qyU