C:
char c = '\u7844';
printf("%c\n", c); // Output: 硄
JavaScript:
const char = '\u7844';
console.log(char); // Output: 硄
Java:
char c = '\u7844';
System.out.println(c); // Output: 硄
JSON:
{"text": "\u7844"} // Value: 硄
Python:
char = '\u7844'
print(char) # Output: 硄
Perl:
my $char = "\x{7844}";
print $char; # Output: 硄
PHP:
$char = "\x{7844}";
echo $char; // Output: 硄
Ruby:
char = "\u{7844}"
puts char # Output: 硄
Rust:
let c = '\u{7844}';
println!("{}", c); // Output: 硄
Go:
char := '\u7844'
fmt.Printf("%c\n", char) // Output: 硄
CSS:
/* CSS content property */
.element::before {
content: "\007844"; /* 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=%E7%A1%84
MD5:
f96bc47c6f56c6e097b897560a0f086c
SHA1:
001f3c454b374bad1c78709c957ffbafc5f1a2d6
Base64:
56GE