C:
char c = '\u90A3';
printf("%c\n", c); // Output: 那
JavaScript:
const char = '\u90A3';
console.log(char); // Output: 那
Java:
char c = '\u90A3';
System.out.println(c); // Output: 那
JSON:
{"text": "\u90A3"} // Value: 那
Python:
char = '\u90A3'
print(char) # Output: 那
Perl:
my $char = "\x{90A3}";
print $char; # Output: 那
PHP:
$char = "\x{90A3}";
echo $char; // Output: 那
Ruby:
char = "\u{90A3}"
puts char # Output: 那
Rust:
let c = '\u{90A3}';
println!("{}", c); // Output: 那
Go:
char := '\u90A3'
fmt.Printf("%c\n", char) // Output: 那
CSS:
/* CSS content property */
.element::before {
content: "\0090A3"; /* 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=%E9%82%A3
MD5:
995c3ec9d76d7e222f833873ec336ccd
SHA1:
327049aa373876eec212b8fdbf25a3808ca308b4
Base64:
6YKj