C:
char c = '\u6672';
printf("%c\n", c); // Output: 晲
JavaScript:
const char = '\u6672';
console.log(char); // Output: 晲
Java:
char c = '\u6672';
System.out.println(c); // Output: 晲
JSON:
{"text": "\u6672"} // Value: 晲
Python:
char = '\u6672'
print(char) # Output: 晲
Perl:
my $char = "\x{6672}";
print $char; # Output: 晲
PHP:
$char = "\x{6672}";
echo $char; // Output: 晲
Ruby:
char = "\u{6672}"
puts char # Output: 晲
Rust:
let c = '\u{6672}';
println!("{}", c); // Output: 晲
Go:
char := '\u6672'
fmt.Printf("%c\n", char) // Output: 晲
CSS:
/* CSS content property */
.element::before {
content: "\006672"; /* 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%B2
MD5:
431261327d4440d07a6f523a273c5a1e
SHA1:
b324f2c67bcb5ea7b71ec03cb984422a65c26fcd
Base64:
5pmy