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