C:
char c = '\u8501';
printf("%c\n", c); // Output: 蔁
JavaScript:
const char = '\u8501';
console.log(char); // Output: 蔁
Java:
char c = '\u8501';
System.out.println(c); // Output: 蔁
JSON:
{"text": "\u8501"} // Value: 蔁
Python:
char = '\u8501'
print(char) # Output: 蔁
Perl:
my $char = "\x{8501}";
print $char; # Output: 蔁
PHP:
$char = "\x{8501}";
echo $char; // Output: 蔁
Ruby:
char = "\u{8501}"
puts char # Output: 蔁
Rust:
let c = '\u{8501}';
println!("{}", c); // Output: 蔁
Go:
char := '\u8501'
fmt.Printf("%c\n", char) // Output: 蔁
CSS:
/* CSS content property */
.element::before {
content: "\008501"; /* 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%81
MD5:
6300e9666ca1efd8e99f91d16182dea3
SHA1:
047e06b3bc0090ef0b4e2bdd9cdf8eaa67ffa61f
Base64:
6JSB