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