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