C:
char c = '\u9FA8';
printf("%c\n", c); // Output: 龨
JavaScript:
const char = '\u9FA8';
console.log(char); // Output: 龨
Java:
char c = '\u9FA8';
System.out.println(c); // Output: 龨
JSON:
{"text": "\u9FA8"} // Value: 龨
Python:
char = '\u9FA8'
print(char) # Output: 龨
Perl:
my $char = "\x{9FA8}";
print $char; # Output: 龨
PHP:
$char = "\x{9FA8}";
echo $char; // Output: 龨
Ruby:
char = "\u{9FA8}"
puts char # Output: 龨
Rust:
let c = '\u{9FA8}';
println!("{}", c); // Output: 龨
Go:
char := '\u9FA8'
fmt.Printf("%c\n", char) // Output: 龨
CSS:
/* CSS content property */
.element::before {
content: "\009FA8"; /* 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%A8
MD5:
07966e8d3b80608cbe97af81f95d11ef
SHA1:
6ea985afb42aedb50aacbee14129fde478d443c0
Base64:
6b6o