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