C:
char c = '\u8723';
printf("%c\n", c); // Output: 蜣
JavaScript:
const char = '\u8723';
console.log(char); // Output: 蜣
Java:
char c = '\u8723';
System.out.println(c); // Output: 蜣
JSON:
{"text": "\u8723"} // Value: 蜣
Python:
char = '\u8723'
print(char) # Output: 蜣
Perl:
my $char = "\x{8723}";
print $char; # Output: 蜣
PHP:
$char = "\x{8723}";
echo $char; // Output: 蜣
Ruby:
char = "\u{8723}"
puts char # Output: 蜣
Rust:
let c = '\u{8723}';
println!("{}", c); // Output: 蜣
Go:
char := '\u8723'
fmt.Printf("%c\n", char) // Output: 蜣
CSS:
/* CSS content property */
.element::before {
content: "\008723"; /* 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%9C%A3
MD5:
a5f5b2ef63246940d78c202af21ed7f8
SHA1:
814a93eaecbebe993a68cc09e1ce6d2f689d3f1c
Base64:
6Jyj