C:
char c = '\u7871';
printf("%c\n", c); // Output: 硱
JavaScript:
const char = '\u7871';
console.log(char); // Output: 硱
Java:
char c = '\u7871';
System.out.println(c); // Output: 硱
JSON:
{"text": "\u7871"} // Value: 硱
Python:
char = '\u7871'
print(char) # Output: 硱
Perl:
my $char = "\x{7871}";
print $char; # Output: 硱
PHP:
$char = "\x{7871}";
echo $char; // Output: 硱
Ruby:
char = "\u{7871}"
puts char # Output: 硱
Rust:
let c = '\u{7871}';
println!("{}", c); // Output: 硱
Go:
char := '\u7871'
fmt.Printf("%c\n", char) // Output: 硱
CSS:
/* CSS content property */
.element::before {
content: "\007871"; /* 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%B1
MD5:
b5dd85378c58ce8a140fdebcca06de79
SHA1:
b37760bfe0c66e7e7f450a8470f2d323fc83978e
Base64:
56Gx