C:
char c = '\u6C4B';
printf("%c\n", c); // Output: 汋
JavaScript:
const char = '\u6C4B';
console.log(char); // Output: 汋
Java:
char c = '\u6C4B';
System.out.println(c); // Output: 汋
JSON:
{"text": "\u6C4B"} // Value: 汋
Python:
char = '\u6C4B'
print(char) # Output: 汋
Perl:
my $char = "\x{6C4B}";
print $char; # Output: 汋
PHP:
$char = "\x{6C4B}";
echo $char; // Output: 汋
Ruby:
char = "\u{6C4B}"
puts char # Output: 汋
Rust:
let c = '\u{6C4B}';
println!("{}", c); // Output: 汋
Go:
char := '\u6C4B'
fmt.Printf("%c\n", char) // Output: 汋
CSS:
/* CSS content property */
.element::before {
content: "\006C4B"; /* 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%8B
MD5:
3ee30b8ed7e43df874c1fd9fc06d0944
SHA1:
41f3273a1929bfe2b1507ea0b86e1b141e8b6d90
Base64:
5rGL