C:
char c = '\u6622';
printf("%c\n", c); // Output: 昢
JavaScript:
const char = '\u6622';
console.log(char); // Output: 昢
Java:
char c = '\u6622';
System.out.println(c); // Output: 昢
JSON:
{"text": "\u6622"} // Value: 昢
Python:
char = '\u6622'
print(char) # Output: 昢
Perl:
my $char = "\x{6622}";
print $char; # Output: 昢
PHP:
$char = "\x{6622}";
echo $char; // Output: 昢
Ruby:
char = "\u{6622}"
puts char # Output: 昢
Rust:
let c = '\u{6622}';
println!("{}", c); // Output: 昢
Go:
char := '\u6622'
fmt.Printf("%c\n", char) // Output: 昢
CSS:
/* CSS content property */
.element::before {
content: "\006622"; /* 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%A2
MD5:
c74213b4bbb6e3fe5c41164262abd8d5
SHA1:
ab95bc5ac1d77ec1e107a6fde6edbc245d4dacf0
Base64:
5pii