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