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