Unicode Finder

"ආ" U+0D86(SINHALA LETTER AAYANNA)

U+0D86
שם בלוק
Sinhala
שם
SINHALA LETTER AAYANNA

Programming

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

Web

CSS
\000D86
HtmlDecimal
ආ
HtmlHexadecimal
ආ
Url
%E0%B6%86

Code

MD5
6c25287371274aa1677334493773ed56
Sha1
ca22a0a1dbb9d38bdf20bed4a2a562599f8900dc
Base64
4LaG

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

Programming Languages

C:

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

JavaScript:

const char = '\u0D86';
console.log(char);  // Output: ආ

Java:

char c = '\u0D86';
System.out.println(c);  // Output: ආ

JSON:

{"text": "\u0D86"}  // Value: ආ

Python:

char = '\u0D86'
print(char)  # Output: ආ

Perl:

my $char = "\x{0D86}";
print $char;  # Output: ආ

PHP:

$char = "\x{0D86}";
echo $char;  // Output: ආ

Ruby:

char = "\u{0D86}"
puts char  # Output: ආ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3462;</p>  <!-- Display: ආ -->

HTML Hexadecimal:

<p>HTML hex: &#x0D86;</p>  <!-- Display: ආ -->

URL Encoding:

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

Encodings

MD5:

6c25287371274aa1677334493773ed56

SHA1:

ca22a0a1dbb9d38bdf20bed4a2a562599f8900dc

Base64:

4LaG