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