C:
char c = '\u8089';
printf("%c\n", c); // Output: 肉
JavaScript:
const char = '\u8089';
console.log(char); // Output: 肉
Java:
char c = '\u8089';
System.out.println(c); // Output: 肉
JSON:
{"text": "\u8089"} // Value: 肉
Python:
char = '\u8089'
print(char) # Output: 肉
Perl:
my $char = "\x{8089}";
print $char; # Output: 肉
PHP:
$char = "\x{8089}";
echo $char; // Output: 肉
Ruby:
char = "\u{8089}"
puts char # Output: 肉
Rust:
let c = '\u{8089}';
println!("{}", c); // Output: 肉
Go:
char := '\u8089'
fmt.Printf("%c\n", char) // Output: 肉
CSS:
/* CSS content property */
.element::before {
content: "\008089"; /* 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%89
MD5:
f37896e63b9eaf32c17a2c19c9bde1dd
SHA1:
6759709d600231d0e70706d85e170f01dc173da9
Base64:
6IKJ