C:
char c = '\u6628';
printf("%c\n", c); // Output: 昨
JavaScript:
const char = '\u6628';
console.log(char); // Output: 昨
Java:
char c = '\u6628';
System.out.println(c); // Output: 昨
JSON:
{"text": "\u6628"} // Value: 昨
Python:
char = '\u6628'
print(char) # Output: 昨
Perl:
my $char = "\x{6628}";
print $char; # Output: 昨
PHP:
$char = "\x{6628}";
echo $char; // Output: 昨
Ruby:
char = "\u{6628}"
puts char # Output: 昨
Rust:
let c = '\u{6628}';
println!("{}", c); // Output: 昨
Go:
char := '\u6628'
fmt.Printf("%c\n", char) // Output: 昨
CSS:
/* CSS content property */
.element::before {
content: "\006628"; /* 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%A8
MD5:
ccbcdbcd3f9666ff24fbf0e3d98a8ab5
SHA1:
8f0005d18f7ec24fc3224aee1e324bedccbffcca
Base64:
5pio