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