C:
char c = '\u6468';
printf("%c\n", c); // Output: 摨
JavaScript:
const char = '\u6468';
console.log(char); // Output: 摨
Java:
char c = '\u6468';
System.out.println(c); // Output: 摨
JSON:
{"text": "\u6468"} // Value: 摨
Python:
char = '\u6468'
print(char) # Output: 摨
Perl:
my $char = "\x{6468}";
print $char; # Output: 摨
PHP:
$char = "\x{6468}";
echo $char; // Output: 摨
Ruby:
char = "\u{6468}"
puts char # Output: 摨
Rust:
let c = '\u{6468}';
println!("{}", c); // Output: 摨
Go:
char := '\u6468'
fmt.Printf("%c\n", char) // Output: 摨
CSS:
/* CSS content property */
.element::before {
content: "\006468"; /* 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%A8
MD5:
1661406c5b3fa0cbd571420455a2990b
SHA1:
ba4b0383cc0c02cffc3e32311cd7213b3ec2d477
Base64:
5pGo