C:
char c = '\u6449';
printf("%c\n", c); // Output: 摉
JavaScript:
const char = '\u6449';
console.log(char); // Output: 摉
Java:
char c = '\u6449';
System.out.println(c); // Output: 摉
JSON:
{"text": "\u6449"} // Value: 摉
Python:
char = '\u6449'
print(char) # Output: 摉
Perl:
my $char = "\x{6449}";
print $char; # Output: 摉
PHP:
$char = "\x{6449}";
echo $char; // Output: 摉
Ruby:
char = "\u{6449}"
puts char # Output: 摉
Rust:
let c = '\u{6449}';
println!("{}", c); // Output: 摉
Go:
char := '\u6449'
fmt.Printf("%c\n", char) // Output: 摉
CSS:
/* CSS content property */
.element::before {
content: "\006449"; /* 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%89
MD5:
fcdc7a4bdea853cf15b49efc0442c8af
SHA1:
b8cd0ebebe5bb4225c790c7481523a86d6bac3f9
Base64:
5pGJ