C:
char c = '\u8095';
printf("%c\n", c); // Output: 肕
JavaScript:
const char = '\u8095';
console.log(char); // Output: 肕
Java:
char c = '\u8095';
System.out.println(c); // Output: 肕
JSON:
{"text": "\u8095"} // Value: 肕
Python:
char = '\u8095'
print(char) # Output: 肕
Perl:
my $char = "\x{8095}";
print $char; # Output: 肕
PHP:
$char = "\x{8095}";
echo $char; // Output: 肕
Ruby:
char = "\u{8095}"
puts char # Output: 肕
Rust:
let c = '\u{8095}';
println!("{}", c); // Output: 肕
Go:
char := '\u8095'
fmt.Printf("%c\n", char) // Output: 肕
CSS:
/* CSS content property */
.element::before {
content: "\008095"; /* 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%95
MD5:
9277809e8bb67c6f4d1db31c2960ce34
SHA1:
c69805f5d881b3734bd6034e5e8b4eb13a9faddf
Base64:
6IKV