C:
char c = '\u6C62';
printf("%c\n", c); // Output: 汢
JavaScript:
const char = '\u6C62';
console.log(char); // Output: 汢
Java:
char c = '\u6C62';
System.out.println(c); // Output: 汢
JSON:
{"text": "\u6C62"} // Value: 汢
Python:
char = '\u6C62'
print(char) # Output: 汢
Perl:
my $char = "\x{6C62}";
print $char; # Output: 汢
PHP:
$char = "\x{6C62}";
echo $char; // Output: 汢
Ruby:
char = "\u{6C62}"
puts char # Output: 汢
Rust:
let c = '\u{6C62}';
println!("{}", c); // Output: 汢
Go:
char := '\u6C62'
fmt.Printf("%c\n", char) // Output: 汢
CSS:
/* CSS content property */
.element::before {
content: "\006C62"; /* 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%B1%A2
MD5:
d7cb06881794ad44d9b9a5545f2d4d17
SHA1:
abf5339df29f340cb4a876a470705c45d5dd64b9
Base64:
5rGi