C:
char c = '\u7854';
printf("%c\n", c); // Output: 硔
JavaScript:
const char = '\u7854';
console.log(char); // Output: 硔
Java:
char c = '\u7854';
System.out.println(c); // Output: 硔
JSON:
{"text": "\u7854"} // Value: 硔
Python:
char = '\u7854'
print(char) # Output: 硔
Perl:
my $char = "\x{7854}";
print $char; # Output: 硔
PHP:
$char = "\x{7854}";
echo $char; // Output: 硔
Ruby:
char = "\u{7854}"
puts char # Output: 硔
Rust:
let c = '\u{7854}';
println!("{}", c); // Output: 硔
Go:
char := '\u7854'
fmt.Printf("%c\n", char) // Output: 硔
CSS:
/* CSS content property */
.element::before {
content: "\007854"; /* 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%94
MD5:
69a56a183b63a2c6e7afabd1608368e0
SHA1:
4c4d4581790f8d7d0297a16098bea502e6891d61
Base64:
56GU