C:
char c = '\u8118';
printf("%c\n", c); // Output: 脘
JavaScript:
const char = '\u8118';
console.log(char); // Output: 脘
Java:
char c = '\u8118';
System.out.println(c); // Output: 脘
JSON:
{"text": "\u8118"} // Value: 脘
Python:
char = '\u8118'
print(char) # Output: 脘
Perl:
my $char = "\x{8118}";
print $char; # Output: 脘
PHP:
$char = "\x{8118}";
echo $char; // Output: 脘
Ruby:
char = "\u{8118}"
puts char # Output: 脘
Rust:
let c = '\u{8118}';
println!("{}", c); // Output: 脘
Go:
char := '\u8118'
fmt.Printf("%c\n", char) // Output: 脘
CSS:
/* CSS content property */
.element::before {
content: "\008118"; /* 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%84%98
MD5:
59870b973c80e41390eb424f11361eed
SHA1:
6b2bc7913eedc0ff9d5d3b28812c1f469bf1372f
Base64:
6ISY