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: ⬒
CSS:
/* CSS content property */
.element::before {
content: "\002B12"; /* 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%92
MD5:
0c9c14ddad37819509ddb81a1da681e7
SHA1:
8a267b9347d239e56453922483e391b9f4eb4549
Base64:
4qyS