C:
char c = '\u8144';
printf("%c\n", c); // Output: 腄
JavaScript:
const char = '\u8144';
console.log(char); // Output: 腄
Java:
char c = '\u8144';
System.out.println(c); // Output: 腄
JSON:
{"text": "\u8144"} // Value: 腄
Python:
char = '\u8144'
print(char) # Output: 腄
Perl:
my $char = "\x{8144}";
print $char; # Output: 腄
PHP:
$char = "\x{8144}";
echo $char; // Output: 腄
Ruby:
char = "\u{8144}"
puts char # Output: 腄
Rust:
let c = '\u{8144}';
println!("{}", c); // Output: 腄
Go:
char := '\u8144'
fmt.Printf("%c\n", char) // Output: 腄
CSS:
/* CSS content property */
.element::before {
content: "\008144"; /* 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%84
MD5:
9606b526b5502f791c12af4f4658cdc5
SHA1:
bce76d3bbc9d60ca86558d79c9de49bd83995da0
Base64:
6IWE