C:
char c = '\u644A';
printf("%c\n", c); // Output: 摊
JavaScript:
const char = '\u644A';
console.log(char); // Output: 摊
Java:
char c = '\u644A';
System.out.println(c); // Output: 摊
JSON:
{"text": "\u644A"} // Value: 摊
Python:
char = '\u644A'
print(char) # Output: 摊
Perl:
my $char = "\x{644A}";
print $char; # Output: 摊
PHP:
$char = "\x{644A}";
echo $char; // Output: 摊
Ruby:
char = "\u{644A}"
puts char # Output: 摊
Rust:
let c = '\u{644A}';
println!("{}", c); // Output: 摊
Go:
char := '\u644A'
fmt.Printf("%c\n", char) // Output: 摊
CSS:
/* CSS content property */
.element::before {
content: "\00644A"; /* 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%8A
MD5:
f6a6514a0b3faa60824b5a2d65f169e6
SHA1:
7e21084bf9a46223fea3f34f58a8b906d7266d8d
Base64:
5pGK