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