C:
char c = '\u9FAB';
printf("%c\n", c); // Output: 龫
JavaScript:
const char = '\u9FAB';
console.log(char); // Output: 龫
Java:
char c = '\u9FAB';
System.out.println(c); // Output: 龫
JSON:
{"text": "\u9FAB"} // Value: 龫
Python:
char = '\u9FAB'
print(char) # Output: 龫
Perl:
my $char = "\x{9FAB}";
print $char; # Output: 龫
PHP:
$char = "\x{9FAB}";
echo $char; // Output: 龫
Ruby:
char = "\u{9FAB}"
puts char # Output: 龫
Rust:
let c = '\u{9FAB}';
println!("{}", c); // Output: 龫
Go:
char := '\u9FAB'
fmt.Printf("%c\n", char) // Output: 龫
CSS:
/* CSS content property */
.element::before {
content: "\009FAB"; /* 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=%E9%BE%AB
MD5:
58adb27badafa91a10d378877fa8fdb9
SHA1:
d9264139994f06bb0c8c8a2f01375a93a98122f4
Base64:
6b6r