C:
char c = '\u7641';
printf("%c\n", c); // Output: 癁
JavaScript:
const char = '\u7641';
console.log(char); // Output: 癁
Java:
char c = '\u7641';
System.out.println(c); // Output: 癁
JSON:
{"text": "\u7641"} // Value: 癁
Python:
char = '\u7641'
print(char) # Output: 癁
Perl:
my $char = "\x{7641}";
print $char; # Output: 癁
PHP:
$char = "\x{7641}";
echo $char; // Output: 癁
Ruby:
char = "\u{7641}"
puts char # Output: 癁
Rust:
let c = '\u{7641}';
println!("{}", c); // Output: 癁
Go:
char := '\u7641'
fmt.Printf("%c\n", char) // Output: 癁
CSS:
/* CSS content property */
.element::before {
content: "\007641"; /* 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%81
MD5:
11216eb9b860274ae0e8aa2818d5046c
SHA1:
1fa2f876503237492d905e2855c5b4b19ea0a546
Base64:
55mB