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