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