C:
char c = '\u8547';
printf("%c\n", c); // Output: 蕇
JavaScript:
const char = '\u8547';
console.log(char); // Output: 蕇
Java:
char c = '\u8547';
System.out.println(c); // Output: 蕇
JSON:
{"text": "\u8547"} // Value: 蕇
Python:
char = '\u8547'
print(char) # Output: 蕇
Perl:
my $char = "\x{8547}";
print $char; # Output: 蕇
PHP:
$char = "\x{8547}";
echo $char; // Output: 蕇
Ruby:
char = "\u{8547}"
puts char # Output: 蕇
Rust:
let c = '\u{8547}';
println!("{}", c); // Output: 蕇
Go:
char := '\u8547'
fmt.Printf("%c\n", char) // Output: 蕇
CSS:
/* CSS content property */
.element::before {
content: "\008547"; /* 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%87
MD5:
3f33f93791ea7f2df0871902d7098827
SHA1:
286d09e8ff170cfca019d523bcbcf0f1ecfa48a8
Base64:
6JWH