C:
char c = '\u6604';
printf("%c\n", c); // Output: 昄
JavaScript:
const char = '\u6604';
console.log(char); // Output: 昄
Java:
char c = '\u6604';
System.out.println(c); // Output: 昄
JSON:
{"text": "\u6604"} // Value: 昄
Python:
char = '\u6604'
print(char) # Output: 昄
Perl:
my $char = "\x{6604}";
print $char; # Output: 昄
PHP:
$char = "\x{6604}";
echo $char; // Output: 昄
Ruby:
char = "\u{6604}"
puts char # Output: 昄
Rust:
let c = '\u{6604}';
println!("{}", c); // Output: 昄
Go:
char := '\u6604'
fmt.Printf("%c\n", char) // Output: 昄
CSS:
/* CSS content property */
.element::before {
content: "\006604"; /* 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=%E6%98%84
MD5:
c77f8ca0289c7505aba2e0593b27657c
SHA1:
36c6b9e6d2dab5f4ce0dc724474f77a2c649d864
Base64:
5piE