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