C:
char c = '\u6531';
printf("%c\n", c); // Output: 攱
JavaScript:
const char = '\u6531';
console.log(char); // Output: 攱
Java:
char c = '\u6531';
System.out.println(c); // Output: 攱
JSON:
{"text": "\u6531"} // Value: 攱
Python:
char = '\u6531'
print(char) # Output: 攱
Perl:
my $char = "\x{6531}";
print $char; # Output: 攱
PHP:
$char = "\x{6531}";
echo $char; // Output: 攱
Ruby:
char = "\u{6531}"
puts char # Output: 攱
Rust:
let c = '\u{6531}';
println!("{}", c); // Output: 攱
Go:
char := '\u6531'
fmt.Printf("%c\n", char) // Output: 攱
CSS:
/* CSS content property */
.element::before {
content: "\006531"; /* 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%B1
MD5:
d87412320fc4b30a6bdc7fc7a4895aec
SHA1:
9fe93a5bd6dc8a54cb4b55aace500d358c44428a
Base64:
5pSx