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