C:
char c = '\u6120';
printf("%c\n", c); // Output: 愠
JavaScript:
const char = '\u6120';
console.log(char); // Output: 愠
Java:
char c = '\u6120';
System.out.println(c); // Output: 愠
JSON:
{"text": "\u6120"} // Value: 愠
Python:
char = '\u6120'
print(char) # Output: 愠
Perl:
my $char = "\x{6120}";
print $char; # Output: 愠
PHP:
$char = "\x{6120}";
echo $char; // Output: 愠
Ruby:
char = "\u{6120}"
puts char # Output: 愠
Rust:
let c = '\u{6120}';
println!("{}", c); // Output: 愠
Go:
char := '\u6120'
fmt.Printf("%c\n", char) // Output: 愠
CSS:
/* CSS content property */
.element::before {
content: "\006120"; /* 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%84%A0
MD5:
f27ab0bf8f4e79c8eeef350c64a21b7f
SHA1:
ac1f9b592e56de54f861e83be79bd9361728a7f7
Base64:
5oSg