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