C:
char c = '\u8543';
printf("%c\n", c); // Output: 蕃
JavaScript:
const char = '\u8543';
console.log(char); // Output: 蕃
Java:
char c = '\u8543';
System.out.println(c); // Output: 蕃
JSON:
{"text": "\u8543"} // Value: 蕃
Python:
char = '\u8543'
print(char) # Output: 蕃
Perl:
my $char = "\x{8543}";
print $char; # Output: 蕃
PHP:
$char = "\x{8543}";
echo $char; // Output: 蕃
Ruby:
char = "\u{8543}"
puts char # Output: 蕃
Rust:
let c = '\u{8543}';
println!("{}", c); // Output: 蕃
Go:
char := '\u8543'
fmt.Printf("%c\n", char) // Output: 蕃
CSS:
/* CSS content property */
.element::before {
content: "\008543"; /* 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%83
MD5:
08e02052bd55cead893fbfa7b7fd6136
SHA1:
ffe0f0f1dd99ba744050b827b281e0a0d661e2a1
Base64:
6JWD