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