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