C:
char c = '\u9946';
printf("%c\n", c); // Output: 饆
JavaScript:
const char = '\u9946';
console.log(char); // Output: 饆
Java:
char c = '\u9946';
System.out.println(c); // Output: 饆
JSON:
{"text": "\u9946"} // Value: 饆
Python:
char = '\u9946'
print(char) # Output: 饆
Perl:
my $char = "\x{9946}";
print $char; # Output: 饆
PHP:
$char = "\x{9946}";
echo $char; // Output: 饆
Ruby:
char = "\u{9946}"
puts char # Output: 饆
Rust:
let c = '\u{9946}';
println!("{}", c); // Output: 饆
Go:
char := '\u9946'
fmt.Printf("%c\n", char) // Output: 饆
CSS:
/* CSS content property */
.element::before {
content: "\009946"; /* 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%A5%86
MD5:
86e7b8862138063a4cac8e6bc50be638
SHA1:
66d87c1bce1b80af84bb8607052ff081a6ca99d5
Base64:
6aWG