C:
char c = '\u8161';
printf("%c\n", c); // Output: 腡
JavaScript:
const char = '\u8161';
console.log(char); // Output: 腡
Java:
char c = '\u8161';
System.out.println(c); // Output: 腡
JSON:
{"text": "\u8161"} // Value: 腡
Python:
char = '\u8161'
print(char) # Output: 腡
Perl:
my $char = "\x{8161}";
print $char; # Output: 腡
PHP:
$char = "\x{8161}";
echo $char; // Output: 腡
Ruby:
char = "\u{8161}"
puts char # Output: 腡
Rust:
let c = '\u{8161}';
println!("{}", c); // Output: 腡
Go:
char := '\u8161'
fmt.Printf("%c\n", char) // Output: 腡
CSS:
/* CSS content property */
.element::before {
content: "\008161"; /* 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%A1
MD5:
c90f37e3a877fbf31448c295d6a8d7eb
SHA1:
49536aa12de77322cd5ce5f1d27ef7c49eff5c5e
Base64:
6IWh