C:
char c = '\u7864';
printf("%c\n", c); // Output: 硤
JavaScript:
const char = '\u7864';
console.log(char); // Output: 硤
Java:
char c = '\u7864';
System.out.println(c); // Output: 硤
JSON:
{"text": "\u7864"} // Value: 硤
Python:
char = '\u7864'
print(char) # Output: 硤
Perl:
my $char = "\x{7864}";
print $char; # Output: 硤
PHP:
$char = "\x{7864}";
echo $char; // Output: 硤
Ruby:
char = "\u{7864}"
puts char # Output: 硤
Rust:
let c = '\u{7864}';
println!("{}", c); // Output: 硤
Go:
char := '\u7864'
fmt.Printf("%c\n", char) // Output: 硤
CSS:
/* CSS content property */
.element::before {
content: "\007864"; /* 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%A4
MD5:
87deaf3fb6b9c73a6183e5ab5d0f0755
SHA1:
edcd8a50f8dd67d71d999d10d0b254b9158cc2f0
Base64:
56Gk