C:
char c = '\u6454';
printf("%c\n", c); // Output: 摔
JavaScript:
const char = '\u6454';
console.log(char); // Output: 摔
Java:
char c = '\u6454';
System.out.println(c); // Output: 摔
JSON:
{"text": "\u6454"} // Value: 摔
Python:
char = '\u6454'
print(char) # Output: 摔
Perl:
my $char = "\x{6454}";
print $char; # Output: 摔
PHP:
$char = "\x{6454}";
echo $char; // Output: 摔
Ruby:
char = "\u{6454}"
puts char # Output: 摔
Rust:
let c = '\u{6454}';
println!("{}", c); // Output: 摔
Go:
char := '\u6454'
fmt.Printf("%c\n", char) // Output: 摔
CSS:
/* CSS content property */
.element::before {
content: "\006454"; /* 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%94
MD5:
f56e35e22942dcd127af0e0a689bdfc8
SHA1:
841e088713e5f0a9d25bbf4a3d92c95e59ff4906
Base64:
5pGU