C:
char c = '\u8540';
printf("%c\n", c); // Output: 蕀
JavaScript:
const char = '\u8540';
console.log(char); // Output: 蕀
Java:
char c = '\u8540';
System.out.println(c); // Output: 蕀
JSON:
{"text": "\u8540"} // Value: 蕀
Python:
char = '\u8540'
print(char) # Output: 蕀
Perl:
my $char = "\x{8540}";
print $char; # Output: 蕀
PHP:
$char = "\x{8540}";
echo $char; // Output: 蕀
Ruby:
char = "\u{8540}"
puts char # Output: 蕀
Rust:
let c = '\u{8540}';
println!("{}", c); // Output: 蕀
Go:
char := '\u8540'
fmt.Printf("%c\n", char) // Output: 蕀
CSS:
/* CSS content property */
.element::before {
content: "\008540"; /* 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%80
MD5:
6467c753efc2db460fc4a96ea76aa365
SHA1:
fd8c0ad3ab70f94039395d98a070ec8cf3f15b73
Base64:
6JWA