C:
char c = '\u8158';
printf("%c\n", c); // Output: 腘
JavaScript:
const char = '\u8158';
console.log(char); // Output: 腘
Java:
char c = '\u8158';
System.out.println(c); // Output: 腘
JSON:
{"text": "\u8158"} // Value: 腘
Python:
char = '\u8158'
print(char) # Output: 腘
Perl:
my $char = "\x{8158}";
print $char; # Output: 腘
PHP:
$char = "\x{8158}";
echo $char; // Output: 腘
Ruby:
char = "\u{8158}"
puts char # Output: 腘
Rust:
let c = '\u{8158}';
println!("{}", c); // Output: 腘
Go:
char := '\u8158'
fmt.Printf("%c\n", char) // Output: 腘
CSS:
/* CSS content property */
.element::before {
content: "\008158"; /* 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%98
MD5:
5071c84dce61821a4f330f53cc2c06b5
SHA1:
8200c78d1ffa85bd1717ac3d51ff964fde2f6a6a
Base64:
6IWY