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