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