C:
char c = '\u8521';
printf("%c\n", c); // Output: 蔡
JavaScript:
const char = '\u8521';
console.log(char); // Output: 蔡
Java:
char c = '\u8521';
System.out.println(c); // Output: 蔡
JSON:
{"text": "\u8521"} // Value: 蔡
Python:
char = '\u8521'
print(char) # Output: 蔡
Perl:
my $char = "\x{8521}";
print $char; # Output: 蔡
PHP:
$char = "\x{8521}";
echo $char; // Output: 蔡
Ruby:
char = "\u{8521}"
puts char # Output: 蔡
Rust:
let c = '\u{8521}';
println!("{}", c); // Output: 蔡
Go:
char := '\u8521'
fmt.Printf("%c\n", char) // Output: 蔡
CSS:
/* CSS content property */
.element::before {
content: "\008521"; /* 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%94%A1
MD5:
bebff03735a51af22c7ee1aac0ccc250
SHA1:
72b4020d61ce20aa1cbd111ba224360701fc5e3a
Base64:
6JSh