C:
char c = '\u6162';
printf("%c\n", c); // Output: 慢
JavaScript:
const char = '\u6162';
console.log(char); // Output: 慢
Java:
char c = '\u6162';
System.out.println(c); // Output: 慢
JSON:
{"text": "\u6162"} // Value: 慢
Python:
char = '\u6162'
print(char) # Output: 慢
Perl:
my $char = "\x{6162}";
print $char; # Output: 慢
PHP:
$char = "\x{6162}";
echo $char; // Output: 慢
Ruby:
char = "\u{6162}"
puts char # Output: 慢
Rust:
let c = '\u{6162}';
println!("{}", c); // Output: 慢
Go:
char := '\u6162'
fmt.Printf("%c\n", char) // Output: 慢
CSS:
/* CSS content property */
.element::before {
content: "\006162"; /* 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%85%A2
MD5:
e0b665f23b529468fe8347ab235677fe
SHA1:
9aadfb450091e59df1480b6f32ee247114a3b8bd
Base64:
5oWi