C:
char c = '\u8733';
printf("%c\n", c); // Output: 蜳
JavaScript:
const char = '\u8733';
console.log(char); // Output: 蜳
Java:
char c = '\u8733';
System.out.println(c); // Output: 蜳
JSON:
{"text": "\u8733"} // Value: 蜳
Python:
char = '\u8733'
print(char) # Output: 蜳
Perl:
my $char = "\x{8733}";
print $char; # Output: 蜳
PHP:
$char = "\x{8733}";
echo $char; // Output: 蜳
Ruby:
char = "\u{8733}"
puts char # Output: 蜳
Rust:
let c = '\u{8733}';
println!("{}", c); // Output: 蜳
Go:
char := '\u8733'
fmt.Printf("%c\n", char) // Output: 蜳
CSS:
/* CSS content property */
.element::before {
content: "\008733"; /* 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%B3
MD5:
13ea32f6979f6fbc4f08033c3071c9ab
SHA1:
82c4d5f691101eb8f1923352d20baf8adf1840e9
Base64:
6Jyz