C:
char c = '\u6AEE';
printf("%c\n", c); // Output: 櫮
JavaScript:
const char = '\u6AEE';
console.log(char); // Output: 櫮
Java:
char c = '\u6AEE';
System.out.println(c); // Output: 櫮
JSON:
{"text": "\u6AEE"} // Value: 櫮
Python:
char = '\u6AEE'
print(char) # Output: 櫮
Perl:
my $char = "\x{6AEE}";
print $char; # Output: 櫮
PHP:
$char = "\x{6AEE}";
echo $char; // Output: 櫮
Ruby:
char = "\u{6AEE}"
puts char # Output: 櫮
Rust:
let c = '\u{6AEE}';
println!("{}", c); // Output: 櫮
Go:
char := '\u6AEE'
fmt.Printf("%c\n", char) // Output: 櫮
CSS:
/* CSS content property */
.element::before {
content: "\006AEE"; /* 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%AB%AE
MD5:
1bd35fcd2efb5c01d1199cc2b6a6e808
SHA1:
926bbfbce3e805f2e2961aebe36c542cf905bed3
Base64:
5quu