C:
char c = '\u7859';
printf("%c\n", c); // Output: 硙
JavaScript:
const char = '\u7859';
console.log(char); // Output: 硙
Java:
char c = '\u7859';
System.out.println(c); // Output: 硙
JSON:
{"text": "\u7859"} // Value: 硙
Python:
char = '\u7859'
print(char) # Output: 硙
Perl:
my $char = "\x{7859}";
print $char; # Output: 硙
PHP:
$char = "\x{7859}";
echo $char; // Output: 硙
Ruby:
char = "\u{7859}"
puts char # Output: 硙
Rust:
let c = '\u{7859}';
println!("{}", c); // Output: 硙
Go:
char := '\u7859'
fmt.Printf("%c\n", char) // Output: 硙
CSS:
/* CSS content property */
.element::before {
content: "\007859"; /* 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%99
MD5:
24543e605c3f70a8848f1983515c6661
SHA1:
351f13aebe222e666540a78f61ce2f2387a5b9c6
Base64:
56GZ