C:
char c = '\u6509';
printf("%c\n", c); // Output: 攉
JavaScript:
const char = '\u6509';
console.log(char); // Output: 攉
Java:
char c = '\u6509';
System.out.println(c); // Output: 攉
JSON:
{"text": "\u6509"} // Value: 攉
Python:
char = '\u6509'
print(char) # Output: 攉
Perl:
my $char = "\x{6509}";
print $char; # Output: 攉
PHP:
$char = "\x{6509}";
echo $char; // Output: 攉
Ruby:
char = "\u{6509}"
puts char # Output: 攉
Rust:
let c = '\u{6509}';
println!("{}", c); // Output: 攉
Go:
char := '\u6509'
fmt.Printf("%c\n", char) // Output: 攉
CSS:
/* CSS content property */
.element::before {
content: "\006509"; /* 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%89
MD5:
68b5d7a021eb2dcc57b694c43764094f
SHA1:
805974b3bdd3d834936d7e6615022290bc611e0e
Base64:
5pSJ