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