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