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