C:
char c = '\u7644';
printf("%c\n", c); // Output: 癄
JavaScript:
const char = '\u7644';
console.log(char); // Output: 癄
Java:
char c = '\u7644';
System.out.println(c); // Output: 癄
JSON:
{"text": "\u7644"} // Value: 癄
Python:
char = '\u7644'
print(char) # Output: 癄
Perl:
my $char = "\x{7644}";
print $char; # Output: 癄
PHP:
$char = "\x{7644}";
echo $char; // Output: 癄
Ruby:
char = "\u{7644}"
puts char # Output: 癄
Rust:
let c = '\u{7644}';
println!("{}", c); // Output: 癄
Go:
char := '\u7644'
fmt.Printf("%c\n", char) // Output: 癄
CSS:
/* CSS content property */
.element::before {
content: "\007644"; /* 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%84
MD5:
eb200581b25f82a813c1948c36a18b2e
SHA1:
0798ab63e9106d57e2cea26f7dee7590d2556670
Base64:
55mE