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