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