C:
char c = '\u5465';
printf("%c\n", c); // Output: 呥
JavaScript:
const char = '\u5465';
console.log(char); // Output: 呥
Java:
char c = '\u5465';
System.out.println(c); // Output: 呥
JSON:
{"text": "\u5465"} // Value: 呥
Python:
char = '\u5465'
print(char) # Output: 呥
Perl:
my $char = "\x{5465}";
print $char; # Output: 呥
PHP:
$char = "\x{5465}";
echo $char; // Output: 呥
Ruby:
char = "\u{5465}"
puts char # Output: 呥
Rust:
let c = '\u{5465}';
println!("{}", c); // Output: 呥
Go:
char := '\u5465'
fmt.Printf("%c\n", char) // Output: 呥
CSS:
/* CSS content property */
.element::before {
content: "\005465"; /* 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=%E5%91%A5
MD5:
6669f60b7b9ca36ed2759cbdf2ea98d9
SHA1:
e05a407f6d7a72bd39412754cc6df6f5e6eca62c
Base64:
5ZGl