C:
char c = '\u9090';
printf("%c\n", c); // Output: 邐
JavaScript:
const char = '\u9090';
console.log(char); // Output: 邐
Java:
char c = '\u9090';
System.out.println(c); // Output: 邐
JSON:
{"text": "\u9090"} // Value: 邐
Python:
char = '\u9090'
print(char) # Output: 邐
Perl:
my $char = "\x{9090}";
print $char; # Output: 邐
PHP:
$char = "\x{9090}";
echo $char; // Output: 邐
Ruby:
char = "\u{9090}"
puts char # Output: 邐
Rust:
let c = '\u{9090}';
println!("{}", c); // Output: 邐
Go:
char := '\u9090'
fmt.Printf("%c\n", char) // Output: 邐
CSS:
/* CSS content property */
.element::before {
content: "\009090"; /* 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%90
MD5:
97305b8fb0fc4fbd8a9d8f347cb27a5d
SHA1:
a26ac2bf1010208993621b0e5978e5b6b76efb64
Base64:
6YKQ