C:
char c = '\u8570';
printf("%c\n", c); // Output: 蕰
JavaScript:
const char = '\u8570';
console.log(char); // Output: 蕰
Java:
char c = '\u8570';
System.out.println(c); // Output: 蕰
JSON:
{"text": "\u8570"} // Value: 蕰
Python:
char = '\u8570'
print(char) # Output: 蕰
Perl:
my $char = "\x{8570}";
print $char; # Output: 蕰
PHP:
$char = "\x{8570}";
echo $char; // Output: 蕰
Ruby:
char = "\u{8570}"
puts char # Output: 蕰
Rust:
let c = '\u{8570}';
println!("{}", c); // Output: 蕰
Go:
char := '\u8570'
fmt.Printf("%c\n", char) // Output: 蕰
CSS:
/* CSS content property */
.element::before {
content: "\008570"; /* 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%95%B0
MD5:
6399ee73fee1fc78f4669606820f342d
SHA1:
a72831743e809a7960cc62a98d76b7698dc35553
Base64:
6JWw