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