C:
char c = '\u8542';
printf("%c\n", c); // Output: 蕂
JavaScript:
const char = '\u8542';
console.log(char); // Output: 蕂
Java:
char c = '\u8542';
System.out.println(c); // Output: 蕂
JSON:
{"text": "\u8542"} // Value: 蕂
Python:
char = '\u8542'
print(char) # Output: 蕂
Perl:
my $char = "\x{8542}";
print $char; # Output: 蕂
PHP:
$char = "\x{8542}";
echo $char; // Output: 蕂
Ruby:
char = "\u{8542}"
puts char # Output: 蕂
Rust:
let c = '\u{8542}';
println!("{}", c); // Output: 蕂
Go:
char := '\u8542'
fmt.Printf("%c\n", char) // Output: 蕂
CSS:
/* CSS content property */
.element::before {
content: "\008542"; /* 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%82
MD5:
580b0f85d018c470b27ff44c5fd0d735
SHA1:
38bd99492622d24ff2d2be14162c9aab7c70167c
Base64:
6JWC