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