C:
char c = '\u7868';
printf("%c\n", c); // Output: 硨
JavaScript:
const char = '\u7868';
console.log(char); // Output: 硨
Java:
char c = '\u7868';
System.out.println(c); // Output: 硨
JSON:
{"text": "\u7868"} // Value: 硨
Python:
char = '\u7868'
print(char) # Output: 硨
Perl:
my $char = "\x{7868}";
print $char; # Output: 硨
PHP:
$char = "\x{7868}";
echo $char; // Output: 硨
Ruby:
char = "\u{7868}"
puts char # Output: 硨
Rust:
let c = '\u{7868}';
println!("{}", c); // Output: 硨
Go:
char := '\u7868'
fmt.Printf("%c\n", char) // Output: 硨
CSS:
/* CSS content property */
.element::before {
content: "\007868"; /* 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%A8
MD5:
3871bb59cf080d1c695e28d04e82f128
SHA1:
34f735564c9e6267ec010e5c3ef51607f219559d
Base64:
56Go