C:
char c = '\u8621';
printf("%c\n", c); // Output: 蘡
JavaScript:
const char = '\u8621';
console.log(char); // Output: 蘡
Java:
char c = '\u8621';
System.out.println(c); // Output: 蘡
JSON:
{"text": "\u8621"} // Value: 蘡
Python:
char = '\u8621'
print(char) # Output: 蘡
Perl:
my $char = "\x{8621}";
print $char; # Output: 蘡
PHP:
$char = "\x{8621}";
echo $char; // Output: 蘡
Ruby:
char = "\u{8621}"
puts char # Output: 蘡
Rust:
let c = '\u{8621}';
println!("{}", c); // Output: 蘡
Go:
char := '\u8621'
fmt.Printf("%c\n", char) // Output: 蘡
CSS:
/* CSS content property */
.element::before {
content: "\008621"; /* 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%98%A1
MD5:
38e6d1cd661c7a4c2e387dd6ffe4a8e5
SHA1:
adad675e1b43dca26919715b7cd8d5c126808d12
Base64:
6Jih