C:
char c = '\u8728';
printf("%c\n", c); // Output: 蜨
JavaScript:
const char = '\u8728';
console.log(char); // Output: 蜨
Java:
char c = '\u8728';
System.out.println(c); // Output: 蜨
JSON:
{"text": "\u8728"} // Value: 蜨
Python:
char = '\u8728'
print(char) # Output: 蜨
Perl:
my $char = "\x{8728}";
print $char; # Output: 蜨
PHP:
$char = "\x{8728}";
echo $char; // Output: 蜨
Ruby:
char = "\u{8728}"
puts char # Output: 蜨
Rust:
let c = '\u{8728}';
println!("{}", c); // Output: 蜨
Go:
char := '\u8728'
fmt.Printf("%c\n", char) // Output: 蜨
CSS:
/* CSS content property */
.element::before {
content: "\008728"; /* 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%A8
MD5:
c159066b20af86564c54522d8b8f0e5c
SHA1:
7f2ea67a9fd192b03c79ed964feef42309ed0834
Base64:
6Jyo