C:
char c = '\u91CC';
printf("%c\n", c); // Output: 里
JavaScript:
const char = '\u91CC';
console.log(char); // Output: 里
Java:
char c = '\u91CC';
System.out.println(c); // Output: 里
JSON:
{"text": "\u91CC"} // Value: 里
Python:
char = '\u91CC'
print(char) # Output: 里
Perl:
my $char = "\x{91CC}";
print $char; # Output: 里
PHP:
$char = "\x{91CC}";
echo $char; // Output: 里
Ruby:
char = "\u{91CC}"
puts char # Output: 里
Rust:
let c = '\u{91CC}';
println!("{}", c); // Output: 里
Go:
char := '\u91CC'
fmt.Printf("%c\n", char) // Output: 里
CSS:
/* CSS content property */
.element::before {
content: "\0091CC"; /* 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=%E9%87%8C
MD5:
ff875e907414f315175529418fdce9ba
SHA1:
c5a8f40bc028c0a7c4439dde983f165a48c388da
Base64:
6YeM