C:
char c = '\u8561';
printf("%c\n", c); // Output: 蕡
JavaScript:
const char = '\u8561';
console.log(char); // Output: 蕡
Java:
char c = '\u8561';
System.out.println(c); // Output: 蕡
JSON:
{"text": "\u8561"} // Value: 蕡
Python:
char = '\u8561'
print(char) # Output: 蕡
Perl:
my $char = "\x{8561}";
print $char; # Output: 蕡
PHP:
$char = "\x{8561}";
echo $char; // Output: 蕡
Ruby:
char = "\u{8561}"
puts char # Output: 蕡
Rust:
let c = '\u{8561}';
println!("{}", c); // Output: 蕡
Go:
char := '\u8561'
fmt.Printf("%c\n", char) // Output: 蕡
CSS:
/* CSS content property */
.element::before {
content: "\008561"; /* 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%A1
MD5:
5d415ab490cc174c6371e672ef5096d4
SHA1:
49cde919fa2a8098bec27b40b61b5be656c2823f
Base64:
6JWh