C:
char c = '\u6523';
printf("%c\n", c); // Output: 攣
JavaScript:
const char = '\u6523';
console.log(char); // Output: 攣
Java:
char c = '\u6523';
System.out.println(c); // Output: 攣
JSON:
{"text": "\u6523"} // Value: 攣
Python:
char = '\u6523'
print(char) # Output: 攣
Perl:
my $char = "\x{6523}";
print $char; # Output: 攣
PHP:
$char = "\x{6523}";
echo $char; // Output: 攣
Ruby:
char = "\u{6523}"
puts char # Output: 攣
Rust:
let c = '\u{6523}';
println!("{}", c); // Output: 攣
Go:
char := '\u6523'
fmt.Printf("%c\n", char) // Output: 攣
CSS:
/* CSS content property */
.element::before {
content: "\006523"; /* 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%A3
MD5:
2bdf59404c4b6a769e9ce5e02b0eb921
SHA1:
c43720496d16c5e3c4515eb0dbf9be36206c4707
Base64:
5pSj