C:
char c = '\u6503';
printf("%c\n", c); // Output: 攃
JavaScript:
const char = '\u6503';
console.log(char); // Output: 攃
Java:
char c = '\u6503';
System.out.println(c); // Output: 攃
JSON:
{"text": "\u6503"} // Value: 攃
Python:
char = '\u6503'
print(char) # Output: 攃
Perl:
my $char = "\x{6503}";
print $char; # Output: 攃
PHP:
$char = "\x{6503}";
echo $char; // Output: 攃
Ruby:
char = "\u{6503}"
puts char # Output: 攃
Rust:
let c = '\u{6503}';
println!("{}", c); // Output: 攃
Go:
char := '\u6503'
fmt.Printf("%c\n", char) // Output: 攃
CSS:
/* CSS content property */
.element::before {
content: "\006503"; /* 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%83
MD5:
1986064c67e9ffdd2a8bdd57ba5ff2bc
SHA1:
ee42e8a50c37789393865e231c8f29bf4c82a5af
Base64:
5pSD