C:
char c = '\u8E72';
printf("%c\n", c); // Output: 蹲
JavaScript:
const char = '\u8E72';
console.log(char); // Output: 蹲
Java:
char c = '\u8E72';
System.out.println(c); // Output: 蹲
JSON:
{"text": "\u8E72"} // Value: 蹲
Python:
char = '\u8E72'
print(char) # Output: 蹲
Perl:
my $char = "\x{8E72}";
print $char; # Output: 蹲
PHP:
$char = "\x{8E72}";
echo $char; // Output: 蹲
Ruby:
char = "\u{8E72}"
puts char # Output: 蹲
Rust:
let c = '\u{8E72}';
println!("{}", c); // Output: 蹲
Go:
char := '\u8E72'
fmt.Printf("%c\n", char) // Output: 蹲
CSS:
/* CSS content property */
.element::before {
content: "\008E72"; /* 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%B9%B2
MD5:
aac6570829c18ce57696fb5d89ecf7fb
SHA1:
7f9d1373202f766351da70c0806a0dba3d3c0ebf
Base64:
6Lmy