C:
char c = '\u7643';
printf("%c\n", c); // Output: 癃
JavaScript:
const char = '\u7643';
console.log(char); // Output: 癃
Java:
char c = '\u7643';
System.out.println(c); // Output: 癃
JSON:
{"text": "\u7643"} // Value: 癃
Python:
char = '\u7643'
print(char) # Output: 癃
Perl:
my $char = "\x{7643}";
print $char; # Output: 癃
PHP:
$char = "\x{7643}";
echo $char; // Output: 癃
Ruby:
char = "\u{7643}"
puts char # Output: 癃
Rust:
let c = '\u{7643}';
println!("{}", c); // Output: 癃
Go:
char := '\u7643'
fmt.Printf("%c\n", char) // Output: 癃
CSS:
/* CSS content property */
.element::before {
content: "\007643"; /* 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%99%83
MD5:
562039ad6fc5e51f5411c23949189c9f
SHA1:
e8f8bcdf870149161883cd9b6147fa63efb2377b
Base64:
55mD