C:
char c = '\u7858';
printf("%c\n", c); // Output: 硘
JavaScript:
const char = '\u7858';
console.log(char); // Output: 硘
Java:
char c = '\u7858';
System.out.println(c); // Output: 硘
JSON:
{"text": "\u7858"} // Value: 硘
Python:
char = '\u7858'
print(char) # Output: 硘
Perl:
my $char = "\x{7858}";
print $char; # Output: 硘
PHP:
$char = "\x{7858}";
echo $char; // Output: 硘
Ruby:
char = "\u{7858}"
puts char # Output: 硘
Rust:
let c = '\u{7858}';
println!("{}", c); // Output: 硘
Go:
char := '\u7858'
fmt.Printf("%c\n", char) // Output: 硘
CSS:
/* CSS content property */
.element::before {
content: "\007858"; /* 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%98
MD5:
4a5518292b60704f6bcc562582e938ce
SHA1:
99ec294316a188fb3b62a8d6f18248c534b281ee
Base64:
56GY