C:
char c = '\u8154';
printf("%c\n", c); // Output: 腔
JavaScript:
const char = '\u8154';
console.log(char); // Output: 腔
Java:
char c = '\u8154';
System.out.println(c); // Output: 腔
JSON:
{"text": "\u8154"} // Value: 腔
Python:
char = '\u8154'
print(char) # Output: 腔
Perl:
my $char = "\x{8154}";
print $char; # Output: 腔
PHP:
$char = "\x{8154}";
echo $char; // Output: 腔
Ruby:
char = "\u{8154}"
puts char # Output: 腔
Rust:
let c = '\u{8154}';
println!("{}", c); // Output: 腔
Go:
char := '\u8154'
fmt.Printf("%c\n", char) // Output: 腔
CSS:
/* CSS content property */
.element::before {
content: "\008154"; /* 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%94
MD5:
4535dec4e1ba4f44523467c02201cfdb
SHA1:
e6c559fc3266f2f9259819f1d8327d51d42ea023
Base64:
6IWU