C:
char c = '\u0A90';
printf("%c\n", c); // Output: ઐ
JavaScript:
const char = '\u0A90';
console.log(char); // Output: ઐ
Java:
char c = '\u0A90';
System.out.println(c); // Output: ઐ
JSON:
{"text": "\u0A90"} // Value: ઐ
Python:
char = '\u0A90'
print(char) # Output: ઐ
Perl:
my $char = "\x{0A90}";
print $char; # Output: ઐ
PHP:
$char = "\x{0A90}";
echo $char; // Output: ઐ
Ruby:
char = "\u{0A90}"
puts char # Output: ઐ
Rust:
let c = '\u{A90}';
println!("{}", c); // Output: ઐ
Go:
char := '\u0A90'
fmt.Printf("%c\n", char) // Output: ઐ
CSS:
/* CSS content property */
.element::before {
content: "\000A90"; /* 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=%E0%AA%90
MD5:
f6aa409fde32982353c2ece14048e081
SHA1:
0f84ee7cf21b15283a9ddd25642cd16fc9be118b
Base64:
4KqQ