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