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