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