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