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