C:
char c = '\u0F12';
printf("%c\n", c); // Output: ༒
JavaScript:
const char = '\u0F12';
console.log(char); // Output: ༒
Java:
char c = '\u0F12';
System.out.println(c); // Output: ༒
JSON:
{"text": "\u0F12"} // Value: ༒
Python:
char = '\u0F12'
print(char) # Output: ༒
Perl:
my $char = "\x{0F12}";
print $char; # Output: ༒
PHP:
$char = "\x{0F12}";
echo $char; // Output: ༒
Ruby:
char = "\u{0F12}"
puts char # Output: ༒
Rust:
let c = '\u{F12}';
println!("{}", c); // Output: ༒
Go:
char := '\u0F12'
fmt.Printf("%c\n", char) // Output: ༒
CSS:
/* CSS content property */
.element::before {
content: "\000F12"; /* 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=%E0%BC%92
MD5:
b2d91e9f710b5701f5488ea585349e7e
SHA1:
8fa89b78ce92c2e216714e388678350e0ce3d460
Base64:
4LyS