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