C:
char c = '\u6464';
printf("%c\n", c); // Output: 摤
JavaScript:
const char = '\u6464';
console.log(char); // Output: 摤
Java:
char c = '\u6464';
System.out.println(c); // Output: 摤
JSON:
{"text": "\u6464"} // Value: 摤
Python:
char = '\u6464'
print(char) # Output: 摤
Perl:
my $char = "\x{6464}";
print $char; # Output: 摤
PHP:
$char = "\x{6464}";
echo $char; // Output: 摤
Ruby:
char = "\u{6464}"
puts char # Output: 摤
Rust:
let c = '\u{6464}';
println!("{}", c); // Output: 摤
Go:
char := '\u6464'
fmt.Printf("%c\n", char) // Output: 摤
CSS:
/* CSS content property */
.element::before {
content: "\006464"; /* 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=%E6%91%A4
MD5:
4f81af98726dcddc2e547937108da734
SHA1:
abe61d5c5a7b2dffa068961e52799804649ad10b
Base64:
5pGk