C:
char c = '\u6446';
printf("%c\n", c); // Output: 摆
JavaScript:
const char = '\u6446';
console.log(char); // Output: 摆
Java:
char c = '\u6446';
System.out.println(c); // Output: 摆
JSON:
{"text": "\u6446"} // Value: 摆
Python:
char = '\u6446'
print(char) # Output: 摆
Perl:
my $char = "\x{6446}";
print $char; # Output: 摆
PHP:
$char = "\x{6446}";
echo $char; // Output: 摆
Ruby:
char = "\u{6446}"
puts char # Output: 摆
Rust:
let c = '\u{6446}';
println!("{}", c); // Output: 摆
Go:
char := '\u6446'
fmt.Printf("%c\n", char) // Output: 摆
CSS:
/* CSS content property */
.element::before {
content: "\006446"; /* 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%86
MD5:
f11b1a68a2c29151aaa9436da1a559be
SHA1:
88fc5b43165478aedcb00cb362356ed5cd5ce94f
Base64:
5pGG