C:
char c = '\u9941';
printf("%c\n", c); // Output: 饁
JavaScript:
const char = '\u9941';
console.log(char); // Output: 饁
Java:
char c = '\u9941';
System.out.println(c); // Output: 饁
JSON:
{"text": "\u9941"} // Value: 饁
Python:
char = '\u9941'
print(char) # Output: 饁
Perl:
my $char = "\x{9941}";
print $char; # Output: 饁
PHP:
$char = "\x{9941}";
echo $char; // Output: 饁
Ruby:
char = "\u{9941}"
puts char # Output: 饁
Rust:
let c = '\u{9941}';
println!("{}", c); // Output: 饁
Go:
char := '\u9941'
fmt.Printf("%c\n", char) // Output: 饁
CSS:
/* CSS content property */
.element::before {
content: "\009941"; /* 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%81
MD5:
32c558f94f88b6d12cdc5850d68bd57b
SHA1:
b951ab35cca59e66ebb9a960370e23803afba4a5
Base64:
6aWB