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