C:
char c = '\u6121';
printf("%c\n", c); // Output: 愡
JavaScript:
const char = '\u6121';
console.log(char); // Output: 愡
Java:
char c = '\u6121';
System.out.println(c); // Output: 愡
JSON:
{"text": "\u6121"} // Value: 愡
Python:
char = '\u6121'
print(char) # Output: 愡
Perl:
my $char = "\x{6121}";
print $char; # Output: 愡
PHP:
$char = "\x{6121}";
echo $char; // Output: 愡
Ruby:
char = "\u{6121}"
puts char # Output: 愡
Rust:
let c = '\u{6121}';
println!("{}", c); // Output: 愡
Go:
char := '\u6121'
fmt.Printf("%c\n", char) // Output: 愡
CSS:
/* CSS content property */
.element::before {
content: "\006121"; /* 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%A1
MD5:
a0bb59d47a3976f780423cfc81ee3881
SHA1:
bb422540adfe8bcc64a20e8c62a671c57e73d489
Base64:
5oSh