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