C:
char c = '\u8983';
printf("%c\n", c); // Output: 覃
JavaScript:
const char = '\u8983';
console.log(char); // Output: 覃
Java:
char c = '\u8983';
System.out.println(c); // Output: 覃
JSON:
{"text": "\u8983"} // Value: 覃
Python:
char = '\u8983'
print(char) # Output: 覃
Perl:
my $char = "\x{8983}";
print $char; # Output: 覃
PHP:
$char = "\x{8983}";
echo $char; // Output: 覃
Ruby:
char = "\u{8983}"
puts char # Output: 覃
Rust:
let c = '\u{8983}';
println!("{}", c); // Output: 覃
Go:
char := '\u8983'
fmt.Printf("%c\n", char) // Output: 覃
CSS:
/* CSS content property */
.element::before {
content: "\008983"; /* 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=%E8%A6%83
MD5:
5cdd1fe5fd79868582181e5641bfe6dd
SHA1:
ebd079d29c616940235319523d474a9d0b45f0a5
Base64:
6KaD