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