C:
char c = '\u6529';
printf("%c\n", c); // Output: 攩
JavaScript:
const char = '\u6529';
console.log(char); // Output: 攩
Java:
char c = '\u6529';
System.out.println(c); // Output: 攩
JSON:
{"text": "\u6529"} // Value: 攩
Python:
char = '\u6529'
print(char) # Output: 攩
Perl:
my $char = "\x{6529}";
print $char; # Output: 攩
PHP:
$char = "\x{6529}";
echo $char; // Output: 攩
Ruby:
char = "\u{6529}"
puts char # Output: 攩
Rust:
let c = '\u{6529}';
println!("{}", c); // Output: 攩
Go:
char := '\u6529'
fmt.Printf("%c\n", char) // Output: 攩
CSS:
/* CSS content property */
.element::before {
content: "\006529"; /* 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%A9
MD5:
c2d89cdce598fdf25804012d1311622e
SHA1:
bc937155c6c7ef9eba7fedb9cb29d6368638c2e0
Base64:
5pSp