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