C:
char c = '\u4E41';
printf("%c\n", c); // Output: 乁
JavaScript:
const char = '\u4E41';
console.log(char); // Output: 乁
Java:
char c = '\u4E41';
System.out.println(c); // Output: 乁
JSON:
{"text": "\u4E41"} // Value: 乁
Python:
char = '\u4E41'
print(char) # Output: 乁
Perl:
my $char = "\x{4E41}";
print $char; # Output: 乁
PHP:
$char = "\x{4E41}";
echo $char; // Output: 乁
Ruby:
char = "\u{4E41}"
puts char # Output: 乁
Rust:
let c = '\u{4E41}';
println!("{}", c); // Output: 乁
Go:
char := '\u4E41'
fmt.Printf("%c\n", char) // Output: 乁
CSS:
/* CSS content property */
.element::before {
content: "\004E41"; /* 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=%E4%B9%81
MD5:
0f482506ead6635e9034a47ce278637b
SHA1:
e831deea078adef9ce0f2a32101de26d9cfd186f
Base64:
5LmB