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