C:
char c = '\u0F33';
printf("%c\n", c); // Output: ༳
JavaScript:
const char = '\u0F33';
console.log(char); // Output: ༳
Java:
char c = '\u0F33';
System.out.println(c); // Output: ༳
JSON:
{"text": "\u0F33"} // Value: ༳
Python:
char = '\u0F33'
print(char) # Output: ༳
Perl:
my $char = "\x{0F33}";
print $char; # Output: ༳
PHP:
$char = "\x{0F33}";
echo $char; // Output: ༳
Ruby:
char = "\u{0F33}"
puts char # Output: ༳
Rust:
let c = '\u{F33}';
println!("{}", c); // Output: ༳
Go:
char := '\u0F33'
fmt.Printf("%c\n", char) // Output: ༳
CSS:
/* CSS content property */
.element::before {
content: "\000F33"; /* 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%B3
MD5:
a3dfee9b5b51e043ceb6e68fa2c9679c
SHA1:
85e9c9bfee1fc48753de7d2538a0324ac5ee31cd
Base64:
4Lyz