C:
char c = '\u8507';
printf("%c\n", c); // Output: 蔇
JavaScript:
const char = '\u8507';
console.log(char); // Output: 蔇
Java:
char c = '\u8507';
System.out.println(c); // Output: 蔇
JSON:
{"text": "\u8507"} // Value: 蔇
Python:
char = '\u8507'
print(char) # Output: 蔇
Perl:
my $char = "\x{8507}";
print $char; # Output: 蔇
PHP:
$char = "\x{8507}";
echo $char; // Output: 蔇
Ruby:
char = "\u{8507}"
puts char # Output: 蔇
Rust:
let c = '\u{8507}';
println!("{}", c); // Output: 蔇
Go:
char := '\u8507'
fmt.Printf("%c\n", char) // Output: 蔇
CSS:
/* CSS content property */
.element::before {
content: "\008507"; /* 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%87
MD5:
a39726da4027e36b0f0c55350afdacc6
SHA1:
116e0b2562f05c0bc70bc42602be3f35b1c9dffa
Base64:
6JSH