C:
char c = '\u6473';
printf("%c\n", c); // Output: 摳
JavaScript:
const char = '\u6473';
console.log(char); // Output: 摳
Java:
char c = '\u6473';
System.out.println(c); // Output: 摳
JSON:
{"text": "\u6473"} // Value: 摳
Python:
char = '\u6473'
print(char) # Output: 摳
Perl:
my $char = "\x{6473}";
print $char; # Output: 摳
PHP:
$char = "\x{6473}";
echo $char; // Output: 摳
Ruby:
char = "\u{6473}"
puts char # Output: 摳
Rust:
let c = '\u{6473}';
println!("{}", c); // Output: 摳
Go:
char := '\u6473'
fmt.Printf("%c\n", char) // Output: 摳
CSS:
/* CSS content property */
.element::before {
content: "\006473"; /* 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%B3
MD5:
35a3fe2c3d21d7af170f78c652ec3aa4
SHA1:
084fdde09a4ea0612ec34e04732fbc3a9ad96858
Base64:
5pGz