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