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