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