C:
char c = '\u8610';
printf("%c\n", c); // Output: 蘐
JavaScript:
const char = '\u8610';
console.log(char); // Output: 蘐
Java:
char c = '\u8610';
System.out.println(c); // Output: 蘐
JSON:
{"text": "\u8610"} // Value: 蘐
Python:
char = '\u8610'
print(char) # Output: 蘐
Perl:
my $char = "\x{8610}";
print $char; # Output: 蘐
PHP:
$char = "\x{8610}";
echo $char; // Output: 蘐
Ruby:
char = "\u{8610}"
puts char # Output: 蘐
Rust:
let c = '\u{8610}';
println!("{}", c); // Output: 蘐
Go:
char := '\u8610'
fmt.Printf("%c\n", char) // Output: 蘐
CSS:
/* CSS content property */
.element::before {
content: "\008610"; /* 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%90
MD5:
ca1ae934d5e40ab85ffa60a48a976ec7
SHA1:
fbbc9a631c94c5866f12004463696a8b73dfb472
Base64:
6JiQ