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