C:
char c = '\u9964';
printf("%c\n", c); // Output: 饤
JavaScript:
const char = '\u9964';
console.log(char); // Output: 饤
Java:
char c = '\u9964';
System.out.println(c); // Output: 饤
JSON:
{"text": "\u9964"} // Value: 饤
Python:
char = '\u9964'
print(char) # Output: 饤
Perl:
my $char = "\x{9964}";
print $char; # Output: 饤
PHP:
$char = "\x{9964}";
echo $char; // Output: 饤
Ruby:
char = "\u{9964}"
puts char # Output: 饤
Rust:
let c = '\u{9964}';
println!("{}", c); // Output: 饤
Go:
char := '\u9964'
fmt.Printf("%c\n", char) // Output: 饤
CSS:
/* CSS content property */
.element::before {
content: "\009964"; /* 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%A4
MD5:
07f630f39c9a4e05921b2362136e5692
SHA1:
e00ff8399645b8e2226c7529b1f798fd97bc5da6
Base64:
6aWk