C:
char c = '\u6522';
printf("%c\n", c); // Output: 攢
JavaScript:
const char = '\u6522';
console.log(char); // Output: 攢
Java:
char c = '\u6522';
System.out.println(c); // Output: 攢
JSON:
{"text": "\u6522"} // Value: 攢
Python:
char = '\u6522'
print(char) # Output: 攢
Perl:
my $char = "\x{6522}";
print $char; # Output: 攢
PHP:
$char = "\x{6522}";
echo $char; // Output: 攢
Ruby:
char = "\u{6522}"
puts char # Output: 攢
Rust:
let c = '\u{6522}';
println!("{}", c); // Output: 攢
Go:
char := '\u6522'
fmt.Printf("%c\n", char) // Output: 攢
CSS:
/* CSS content property */
.element::before {
content: "\006522"; /* 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%A2
MD5:
6705ac50370e4f795da2b7bc9ac7ab4c
SHA1:
e5ab4cffe54c93f74b65c2241b5f862561e832b5
Base64:
5pSi