C:
char c = '\u6650';
printf("%c\n", c); // Output: 晐
JavaScript:
const char = '\u6650';
console.log(char); // Output: 晐
Java:
char c = '\u6650';
System.out.println(c); // Output: 晐
JSON:
{"text": "\u6650"} // Value: 晐
Python:
char = '\u6650'
print(char) # Output: 晐
Perl:
my $char = "\x{6650}";
print $char; # Output: 晐
PHP:
$char = "\x{6650}";
echo $char; // Output: 晐
Ruby:
char = "\u{6650}"
puts char # Output: 晐
Rust:
let c = '\u{6650}';
println!("{}", c); // Output: 晐
Go:
char := '\u6650'
fmt.Printf("%c\n", char) // Output: 晐
CSS:
/* CSS content property */
.element::before {
content: "\006650"; /* 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%90
MD5:
0358464276521b5ea7d32d548bae4197
SHA1:
0bf40df08853aa5488445c2b5e6323b1ac0d8bf5
Base64:
5pmQ