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