C:
char c = '\u6742';
printf("%c\n", c); // Output: 杂
JavaScript:
const char = '\u6742';
console.log(char); // Output: 杂
Java:
char c = '\u6742';
System.out.println(c); // Output: 杂
JSON:
{"text": "\u6742"} // Value: 杂
Python:
char = '\u6742'
print(char) # Output: 杂
Perl:
my $char = "\x{6742}";
print $char; # Output: 杂
PHP:
$char = "\x{6742}";
echo $char; // Output: 杂
Ruby:
char = "\u{6742}"
puts char # Output: 杂
Rust:
let c = '\u{6742}';
println!("{}", c); // Output: 杂
Go:
char := '\u6742'
fmt.Printf("%c\n", char) // Output: 杂
CSS:
/* CSS content property */
.element::before {
content: "\006742"; /* 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%9D%82
MD5:
0cdf25f93ffb2c8c342c14216f6b47e8
SHA1:
5e28a268fb680e650a6ecca4bef32a451709c967
Base64:
5p2C