C:
char c = '\u6646';
printf("%c\n", c); // Output: 晆
JavaScript:
const char = '\u6646';
console.log(char); // Output: 晆
Java:
char c = '\u6646';
System.out.println(c); // Output: 晆
JSON:
{"text": "\u6646"} // Value: 晆
Python:
char = '\u6646'
print(char) # Output: 晆
Perl:
my $char = "\x{6646}";
print $char; # Output: 晆
PHP:
$char = "\x{6646}";
echo $char; // Output: 晆
Ruby:
char = "\u{6646}"
puts char # Output: 晆
Rust:
let c = '\u{6646}';
println!("{}", c); // Output: 晆
Go:
char := '\u6646'
fmt.Printf("%c\n", char) // Output: 晆
CSS:
/* CSS content property */
.element::before {
content: "\006646"; /* 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%86
MD5:
02352b6429ca348eb81b8357b9435aa2
SHA1:
e4243d41f03281387ec699136fc9040a6c1c674f
Base64:
5pmG