C:
char c = '\u6065';
printf("%c\n", c); // Output: 恥
JavaScript:
const char = '\u6065';
console.log(char); // Output: 恥
Java:
char c = '\u6065';
System.out.println(c); // Output: 恥
JSON:
{"text": "\u6065"} // Value: 恥
Python:
char = '\u6065'
print(char) # Output: 恥
Perl:
my $char = "\x{6065}";
print $char; # Output: 恥
PHP:
$char = "\x{6065}";
echo $char; // Output: 恥
Ruby:
char = "\u{6065}"
puts char # Output: 恥
Rust:
let c = '\u{6065}';
println!("{}", c); // Output: 恥
Go:
char := '\u6065'
fmt.Printf("%c\n", char) // Output: 恥
CSS:
/* CSS content property */
.element::before {
content: "\006065"; /* 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=%E6%81%A5
MD5:
6726fdf48887a724d668884141737fb7
SHA1:
fc7940a1eeb25f52c08a76d81de50033f58c19cd
Base64:
5oGl