C:
char c = '\u6447';
printf("%c\n", c); // Output: 摇
JavaScript:
const char = '\u6447';
console.log(char); // Output: 摇
Java:
char c = '\u6447';
System.out.println(c); // Output: 摇
JSON:
{"text": "\u6447"} // Value: 摇
Python:
char = '\u6447'
print(char) # Output: 摇
Perl:
my $char = "\x{6447}";
print $char; # Output: 摇
PHP:
$char = "\x{6447}";
echo $char; // Output: 摇
Ruby:
char = "\u{6447}"
puts char # Output: 摇
Rust:
let c = '\u{6447}';
println!("{}", c); // Output: 摇
Go:
char := '\u6447'
fmt.Printf("%c\n", char) // Output: 摇
CSS:
/* CSS content property */
.element::before {
content: "\006447"; /* 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%87
MD5:
bb154f823b5189b034cdc3cfcd553341
SHA1:
1b517b8e44c8ed7d6680728844f4ed0160a153c2
Base64:
5pGH