C:
char c = '\u8162';
printf("%c\n", c); // Output: 腢
JavaScript:
const char = '\u8162';
console.log(char); // Output: 腢
Java:
char c = '\u8162';
System.out.println(c); // Output: 腢
JSON:
{"text": "\u8162"} // Value: 腢
Python:
char = '\u8162'
print(char) # Output: 腢
Perl:
my $char = "\x{8162}";
print $char; # Output: 腢
PHP:
$char = "\x{8162}";
echo $char; // Output: 腢
Ruby:
char = "\u{8162}"
puts char # Output: 腢
Rust:
let c = '\u{8162}';
println!("{}", c); // Output: 腢
Go:
char := '\u8162'
fmt.Printf("%c\n", char) // Output: 腢
CSS:
/* CSS content property */
.element::before {
content: "\008162"; /* 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%85%A2
MD5:
40e0e53d8a9e6d93d40f560582d2e6bf
SHA1:
c04b301b5eacbb6d25006fecbe6731be82194ddd
Base64:
6IWi