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