C:
char c = '\u6342';
printf("%c\n", c); // Output: 捂
JavaScript:
const char = '\u6342';
console.log(char); // Output: 捂
Java:
char c = '\u6342';
System.out.println(c); // Output: 捂
JSON:
{"text": "\u6342"} // Value: 捂
Python:
char = '\u6342'
print(char) # Output: 捂
Perl:
my $char = "\x{6342}";
print $char; # Output: 捂
PHP:
$char = "\x{6342}";
echo $char; // Output: 捂
Ruby:
char = "\u{6342}"
puts char # Output: 捂
Rust:
let c = '\u{6342}';
println!("{}", c); // Output: 捂
Go:
char := '\u6342'
fmt.Printf("%c\n", char) // Output: 捂
CSS:
/* CSS content property */
.element::before {
content: "\006342"; /* 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%8D%82
MD5:
034eaca2575828b6a2f5fadef817e970
SHA1:
9453cad8b9f43cdafaa2997c7c05aeb24294a0f1
Base64:
5o2C