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