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