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