C:
char c = '\u8481';
printf("%c\n", c); // Output: 蒁
JavaScript:
const char = '\u8481';
console.log(char); // Output: 蒁
Java:
char c = '\u8481';
System.out.println(c); // Output: 蒁
JSON:
{"text": "\u8481"} // Value: 蒁
Python:
char = '\u8481'
print(char) # Output: 蒁
Perl:
my $char = "\x{8481}";
print $char; # Output: 蒁
PHP:
$char = "\x{8481}";
echo $char; // Output: 蒁
Ruby:
char = "\u{8481}"
puts char # Output: 蒁
Rust:
let c = '\u{8481}';
println!("{}", c); // Output: 蒁
Go:
char := '\u8481'
fmt.Printf("%c\n", char) // Output: 蒁
CSS:
/* CSS content property */
.element::before {
content: "\008481"; /* 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%92%81
MD5:
d2702f67a7104eb6ae2dc78eb9525eeb
SHA1:
8240c6b5502afc67a44eb6c871aa1c8289fd066b
Base64:
6JKB