C:
char c = '\u0F9A';
printf("%c\n", c); // Output: ྚ
JavaScript:
const char = '\u0F9A';
console.log(char); // Output: ྚ
Java:
char c = '\u0F9A';
System.out.println(c); // Output: ྚ
JSON:
{"text": "\u0F9A"} // Value: ྚ
Python:
char = '\u0F9A'
print(char) # Output: ྚ
Perl:
my $char = "\x{0F9A}";
print $char; # Output: ྚ
PHP:
$char = "\x{0F9A}";
echo $char; // Output: ྚ
Ruby:
char = "\u{0F9A}"
puts char # Output: ྚ
Rust:
let c = '\u{F9A}';
println!("{}", c); // Output: ྚ
Go:
char := '\u0F9A'
fmt.Printf("%c\n", char) // Output: ྚ
CSS:
/* CSS content property */
.element::before {
content: "\000F9A"; /* 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%BE%9A
MD5:
10e3957df7ac4014416d31a178c1a8ce
SHA1:
9199dbcae7d97a9efcc4e90cddeccc6ada2526fc
Base64:
4L6a