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