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