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