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