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