C:
char c = '\u8088';
printf("%c\n", c); // Output: 肈
JavaScript:
const char = '\u8088';
console.log(char); // Output: 肈
Java:
char c = '\u8088';
System.out.println(c); // Output: 肈
JSON:
{"text": "\u8088"} // Value: 肈
Python:
char = '\u8088'
print(char) # Output: 肈
Perl:
my $char = "\x{8088}";
print $char; # Output: 肈
PHP:
$char = "\x{8088}";
echo $char; // Output: 肈
Ruby:
char = "\u{8088}"
puts char # Output: 肈
Rust:
let c = '\u{8088}';
println!("{}", c); // Output: 肈
Go:
char := '\u8088'
fmt.Printf("%c\n", char) // Output: 肈
CSS:
/* CSS content property */
.element::before {
content: "\008088"; /* 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%88
MD5:
261191c86d5be76da606cfdd031de45e
SHA1:
b6321c0645726cf55904129051269d53e046796e
Base64:
6IKI