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