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