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