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