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