C:
char c = '\u8190';
printf("%c\n", c); // Output: 膐
JavaScript:
const char = '\u8190';
console.log(char); // Output: 膐
Java:
char c = '\u8190';
System.out.println(c); // Output: 膐
JSON:
{"text": "\u8190"} // Value: 膐
Python:
char = '\u8190'
print(char) # Output: 膐
Perl:
my $char = "\x{8190}";
print $char; # Output: 膐
PHP:
$char = "\x{8190}";
echo $char; // Output: 膐
Ruby:
char = "\u{8190}"
puts char # Output: 膐
Rust:
let c = '\u{8190}';
println!("{}", c); // Output: 膐
Go:
char := '\u8190'
fmt.Printf("%c\n", char) // Output: 膐
CSS:
/* CSS content property */
.element::before {
content: "\008190"; /* 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%90
MD5:
5ea8754e18cc18281f88e3f9aaa78b98
SHA1:
0254833ab07120f4c220dbcaf379e0e375461129
Base64:
6IaQ