C:
char c = '\u8187';
printf("%c\n", c); // Output: 膇
JavaScript:
const char = '\u8187';
console.log(char); // Output: 膇
Java:
char c = '\u8187';
System.out.println(c); // Output: 膇
JSON:
{"text": "\u8187"} // Value: 膇
Python:
char = '\u8187'
print(char) # Output: 膇
Perl:
my $char = "\x{8187}";
print $char; # Output: 膇
PHP:
$char = "\x{8187}";
echo $char; // Output: 膇
Ruby:
char = "\u{8187}"
puts char # Output: 膇
Rust:
let c = '\u{8187}';
println!("{}", c); // Output: 膇
Go:
char := '\u8187'
fmt.Printf("%c\n", char) // Output: 膇
CSS:
/* CSS content property */
.element::before {
content: "\008187"; /* 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%87
MD5:
94c060f8b5983f8d8a5c71b09df7010b
SHA1:
6f8fc0472b6ed57c239416949b79ac9060b1f17f
Base64:
6IaH