C:
char c = '\u6123';
printf("%c\n", c); // Output: 愣
JavaScript:
const char = '\u6123';
console.log(char); // Output: 愣
Java:
char c = '\u6123';
System.out.println(c); // Output: 愣
JSON:
{"text": "\u6123"} // Value: 愣
Python:
char = '\u6123'
print(char) # Output: 愣
Perl:
my $char = "\x{6123}";
print $char; # Output: 愣
PHP:
$char = "\x{6123}";
echo $char; // Output: 愣
Ruby:
char = "\u{6123}"
puts char # Output: 愣
Rust:
let c = '\u{6123}';
println!("{}", c); // Output: 愣
Go:
char := '\u6123'
fmt.Printf("%c\n", char) // Output: 愣
CSS:
/* CSS content property */
.element::before {
content: "\006123"; /* 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%A3
MD5:
5579f179649ca2cebfa4197ee0830fa4
SHA1:
2afcd3f144e81bde7a82fc9d128e13bad60b84ca
Base64:
5oSj