C:
char c = '\u6513';
printf("%c\n", c); // Output: 攓
JavaScript:
const char = '\u6513';
console.log(char); // Output: 攓
Java:
char c = '\u6513';
System.out.println(c); // Output: 攓
JSON:
{"text": "\u6513"} // Value: 攓
Python:
char = '\u6513'
print(char) # Output: 攓
Perl:
my $char = "\x{6513}";
print $char; # Output: 攓
PHP:
$char = "\x{6513}";
echo $char; // Output: 攓
Ruby:
char = "\u{6513}"
puts char # Output: 攓
Rust:
let c = '\u{6513}';
println!("{}", c); // Output: 攓
Go:
char := '\u6513'
fmt.Printf("%c\n", char) // Output: 攓
CSS:
/* CSS content property */
.element::before {
content: "\006513"; /* 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%94%93
MD5:
97fb93a1f5f60e2e41cca1f187d341de
SHA1:
1bd6fe24bf18451a4ad3c4b8f0e924f7275f6a6c
Base64:
5pST