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