C:
char c = '\u7856';
printf("%c\n", c); // Output: 硖
JavaScript:
const char = '\u7856';
console.log(char); // Output: 硖
Java:
char c = '\u7856';
System.out.println(c); // Output: 硖
JSON:
{"text": "\u7856"} // Value: 硖
Python:
char = '\u7856'
print(char) # Output: 硖
Perl:
my $char = "\x{7856}";
print $char; # Output: 硖
PHP:
$char = "\x{7856}";
echo $char; // Output: 硖
Ruby:
char = "\u{7856}"
puts char # Output: 硖
Rust:
let c = '\u{7856}';
println!("{}", c); // Output: 硖
Go:
char := '\u7856'
fmt.Printf("%c\n", char) // Output: 硖
CSS:
/* CSS content property */
.element::before {
content: "\007856"; /* 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%96
MD5:
432c17a07c43c5ebce04ee54e7e31754
SHA1:
ad57d002d0ccfa30fbb29929a4214a3e8559791c
Base64:
56GW