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