Unicode Finder

"ං" U+0D82(SINHALA SIGN ANUSVARAYA)

U+0D82
Nama Blok
Sinhala
Nama
SINHALA SIGN ANUSVARAYA

Programming

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

Web

CSS
\000D82
HtmlDecimal
ං
HtmlHexadecimal
ං
Url
%E0%B6%82

Code

MD5
334a4d0bcafa74ad8936e0f997335665
Sha1
31c4c8d204b40304a2e8d056a0b3c8b58d5c7ef6
Base64
4LaC

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u0D82';
console.log(char);  // Output: ං

Java:

char c = '\u0D82';
System.out.println(c);  // Output: ං

JSON:

{"text": "\u0D82"}  // Value: ං

Python:

char = '\u0D82'
print(char)  # Output: ං

Perl:

my $char = "\x{0D82}";
print $char;  # Output: ං

PHP:

$char = "\x{0D82}";
echo $char;  // Output: ං

Ruby:

char = "\u{0D82}"
puts char  # Output: ං

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3458;</p>  <!-- Display: ං -->

HTML Hexadecimal:

<p>HTML hex: &#x0D82;</p>  <!-- Display: ං -->

URL Encoding:

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

Encodings

MD5:

334a4d0bcafa74ad8936e0f997335665

SHA1:

31c4c8d204b40304a2e8d056a0b3c8b58d5c7ef6

Base64:

4LaC