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