C:
char c = '\u6649';
printf("%c\n", c); // Output: 晉
JavaScript:
const char = '\u6649';
console.log(char); // Output: 晉
Java:
char c = '\u6649';
System.out.println(c); // Output: 晉
JSON:
{"text": "\u6649"} // Value: 晉
Python:
char = '\u6649'
print(char) # Output: 晉
Perl:
my $char = "\x{6649}";
print $char; # Output: 晉
PHP:
$char = "\x{6649}";
echo $char; // Output: 晉
Ruby:
char = "\u{6649}"
puts char # Output: 晉
Rust:
let c = '\u{6649}';
println!("{}", c); // Output: 晉
Go:
char := '\u6649'
fmt.Printf("%c\n", char) // Output: 晉
CSS:
/* CSS content property */
.element::before {
content: "\006649"; /* 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%89
MD5:
259eefac2c7f2b2bb42a4021df48685e
SHA1:
24c0d3bd40e8eb5facc9ee385d5b6a736b56c58d
Base64:
5pmJ