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