C:
char c = '\u8503';
printf("%c\n", c); // Output: 蔃
JavaScript:
const char = '\u8503';
console.log(char); // Output: 蔃
Java:
char c = '\u8503';
System.out.println(c); // Output: 蔃
JSON:
{"text": "\u8503"} // Value: 蔃
Python:
char = '\u8503'
print(char) # Output: 蔃
Perl:
my $char = "\x{8503}";
print $char; # Output: 蔃
PHP:
$char = "\x{8503}";
echo $char; // Output: 蔃
Ruby:
char = "\u{8503}"
puts char # Output: 蔃
Rust:
let c = '\u{8503}';
println!("{}", c); // Output: 蔃
Go:
char := '\u8503'
fmt.Printf("%c\n", char) // Output: 蔃
CSS:
/* CSS content property */
.element::before {
content: "\008503"; /* 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%94%83
MD5:
0bcf1224351625c124f401cc5326e093
SHA1:
ecf70046474ece5a688c78f9f2e4e57714411519
Base64:
6JSD