C:
char c = '\u8502';
printf("%c\n", c); // Output: 蔂
JavaScript:
const char = '\u8502';
console.log(char); // Output: 蔂
Java:
char c = '\u8502';
System.out.println(c); // Output: 蔂
JSON:
{"text": "\u8502"} // Value: 蔂
Python:
char = '\u8502'
print(char) # Output: 蔂
Perl:
my $char = "\x{8502}";
print $char; # Output: 蔂
PHP:
$char = "\x{8502}";
echo $char; // Output: 蔂
Ruby:
char = "\u{8502}"
puts char # Output: 蔂
Rust:
let c = '\u{8502}';
println!("{}", c); // Output: 蔂
Go:
char := '\u8502'
fmt.Printf("%c\n", char) // Output: 蔂
CSS:
/* CSS content property */
.element::before {
content: "\008502"; /* 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%82
MD5:
79fad2f1cde38ce6642cb43d327cc413
SHA1:
18c0cf0cc4cf46a30b0208c39826646ee67d2a8c
Base64:
6JSC