C:
char c = '\u7842';
printf("%c\n", c); // Output: 硂
JavaScript:
const char = '\u7842';
console.log(char); // Output: 硂
Java:
char c = '\u7842';
System.out.println(c); // Output: 硂
JSON:
{"text": "\u7842"} // Value: 硂
Python:
char = '\u7842'
print(char) # Output: 硂
Perl:
my $char = "\x{7842}";
print $char; # Output: 硂
PHP:
$char = "\x{7842}";
echo $char; // Output: 硂
Ruby:
char = "\u{7842}"
puts char # Output: 硂
Rust:
let c = '\u{7842}';
println!("{}", c); // Output: 硂
Go:
char := '\u7842'
fmt.Printf("%c\n", char) // Output: 硂
CSS:
/* CSS content property */
.element::before {
content: "\007842"; /* 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%82
MD5:
5b50cdf9d0ef4f9928cc654f9ab8bcfb
SHA1:
e274735804d42d2f7d03e18826af440bf945b5c1
Base64:
56GC