C:
char c = '\u8199';
printf("%c\n", c); // Output: 膙
JavaScript:
const char = '\u8199';
console.log(char); // Output: 膙
Java:
char c = '\u8199';
System.out.println(c); // Output: 膙
JSON:
{"text": "\u8199"} // Value: 膙
Python:
char = '\u8199'
print(char) # Output: 膙
Perl:
my $char = "\x{8199}";
print $char; # Output: 膙
PHP:
$char = "\x{8199}";
echo $char; // Output: 膙
Ruby:
char = "\u{8199}"
puts char # Output: 膙
Rust:
let c = '\u{8199}';
println!("{}", c); // Output: 膙
Go:
char := '\u8199'
fmt.Printf("%c\n", char) // Output: 膙
CSS:
/* CSS content property */
.element::before {
content: "\008199"; /* 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%86%99
MD5:
9f2b5ef2bb019f78e3f28bcef22eed57
SHA1:
3b685a05884853c028b8536c89c397fabc1dcc9c
Base64:
6IaZ