C:
char c = '\u6663';
printf("%c\n", c); // Output: 晣
JavaScript:
const char = '\u6663';
console.log(char); // Output: 晣
Java:
char c = '\u6663';
System.out.println(c); // Output: 晣
JSON:
{"text": "\u6663"} // Value: 晣
Python:
char = '\u6663'
print(char) # Output: 晣
Perl:
my $char = "\x{6663}";
print $char; # Output: 晣
PHP:
$char = "\x{6663}";
echo $char; // Output: 晣
Ruby:
char = "\u{6663}"
puts char # Output: 晣
Rust:
let c = '\u{6663}';
println!("{}", c); // Output: 晣
Go:
char := '\u6663'
fmt.Printf("%c\n", char) // Output: 晣
CSS:
/* CSS content property */
.element::before {
content: "\006663"; /* 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%A3
MD5:
1406a844ba384ebdab4ec6f3bb564f37
SHA1:
55379005ec2bc7bb6abcc4cff5188fbc68e053ae
Base64:
5pmj