C:
char c = '\u6527';
printf("%c\n", c); // Output: 攧
JavaScript:
const char = '\u6527';
console.log(char); // Output: 攧
Java:
char c = '\u6527';
System.out.println(c); // Output: 攧
JSON:
{"text": "\u6527"} // Value: 攧
Python:
char = '\u6527'
print(char) # Output: 攧
Perl:
my $char = "\x{6527}";
print $char; # Output: 攧
PHP:
$char = "\x{6527}";
echo $char; // Output: 攧
Ruby:
char = "\u{6527}"
puts char # Output: 攧
Rust:
let c = '\u{6527}';
println!("{}", c); // Output: 攧
Go:
char := '\u6527'
fmt.Printf("%c\n", char) // Output: 攧
CSS:
/* CSS content property */
.element::before {
content: "\006527"; /* 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%A7
MD5:
9069fc8eb8ec973f4df0bebca56ca2a4
SHA1:
51c33ce736c86cecb93562b857d86bd048fed9bf
Base64:
5pSn