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