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