Unicode Finder

"ඔ" U+0D94(SINHALA LETTER OYANNA)

U+0D94
שם בלוק
Sinhala
שם
SINHALA LETTER OYANNA

Programming

C
\u0D94
JavaScript
\u0D94
Java
\u0D94
Json
\u0D94
Python
\u0D94
Perl
\x{0D94}
PHP
\x{0D94}
Ruby
\u{0D94}
Rust
\u{D94}
Go
\u0D94

Web

CSS
\000D94
HtmlDecimal
ඔ
HtmlHexadecimal
ඔ
Url
%E0%B6%94

Code

MD5
903089e3b19c2a1633817d889a200f0e
Sha1
aeea01dd2df6cb5e87f831ea38c9b9dec73988cf
Base64
4LaU

דוגמאות שימוש

Programming Languages

C:

char c = '\u0D94';
printf("%c\n", c);  // Output: ඔ

JavaScript:

const char = '\u0D94';
console.log(char);  // Output: ඔ

Java:

char c = '\u0D94';
System.out.println(c);  // Output: ඔ

JSON:

{"text": "\u0D94"}  // Value: ඔ

Python:

char = '\u0D94'
print(char)  # Output: ඔ

Perl:

my $char = "\x{0D94}";
print $char;  # Output: ඔ

PHP:

$char = "\x{0D94}";
echo $char;  // Output: ඔ

Ruby:

char = "\u{0D94}"
puts char  # Output: ඔ

Rust:

let c = '\u{D94}';
println!("{}", c);  // Output: ඔ

Go:

char := '\u0D94'
fmt.Printf("%c\n", char)  // Output: ඔ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000D94";  /* Display: ඔ */
}

HTML Decimal:

<p>HTML decimal: &#3476;</p>  <!-- Display: ඔ -->

HTML Hexadecimal:

<p>HTML hex: &#x0D94;</p>  <!-- Display: ඔ -->

URL Encoding:

// ඔ URL encoding
https://unicodefinder.com/search.php?query=%E0%B6%94

Encodings

MD5:

903089e3b19c2a1633817d889a200f0e

SHA1:

aeea01dd2df6cb5e87f831ea38c9b9dec73988cf

Base64:

4LaU