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