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