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