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