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