C:
char c = '\u8DA9';
printf("%c\n", c); // Output: 趩
JavaScript:
const char = '\u8DA9';
console.log(char); // Output: 趩
Java:
char c = '\u8DA9';
System.out.println(c); // Output: 趩
JSON:
{"text": "\u8DA9"} // Value: 趩
Python:
char = '\u8DA9'
print(char) # Output: 趩
Perl:
my $char = "\x{8DA9}";
print $char; # Output: 趩
PHP:
$char = "\x{8DA9}";
echo $char; // Output: 趩
Ruby:
char = "\u{8DA9}"
puts char # Output: 趩
Rust:
let c = '\u{8DA9}';
println!("{}", c); // Output: 趩
Go:
char := '\u8DA9'
fmt.Printf("%c\n", char) // Output: 趩
CSS:
/* CSS content property */
.element::before {
content: "\008DA9"; /* 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=%E8%B6%A9
MD5:
d3f26da079bed2f7cd132ed28107f611
SHA1:
2f14ca63fc4eac4180df081e26aefedf9eb25718
Base64:
6Lap