C:
char c = '\u5058';
printf("%c\n", c); // Output: 偘
JavaScript:
const char = '\u5058';
console.log(char); // Output: 偘
Java:
char c = '\u5058';
System.out.println(c); // Output: 偘
JSON:
{"text": "\u5058"} // Value: 偘
Python:
char = '\u5058'
print(char) # Output: 偘
Perl:
my $char = "\x{5058}";
print $char; # Output: 偘
PHP:
$char = "\x{5058}";
echo $char; // Output: 偘
Ruby:
char = "\u{5058}"
puts char # Output: 偘
Rust:
let c = '\u{5058}';
println!("{}", c); // Output: 偘
Go:
char := '\u5058'
fmt.Printf("%c\n", char) // Output: 偘
CSS:
/* CSS content property */
.element::before {
content: "\005058"; /* 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%98
MD5:
fc02ef5eb674f254fbb4430ceb254bf3
SHA1:
865bf9ddefb22b18ba0ce30aa7efe40c2dec2bdb
Base64:
5YGY