Unicode Finder

"ො" U+0DDC(SINHALA VOWEL SIGN KOMBUVA HAA AELA-PILLA)

U+0DDC
بلاک کا نام
Sinhala
نام
SINHALA VOWEL SIGN KOMBUVA HAA AELA-PILLA

Programming

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

Web

CSS
\000DDC
HtmlDecimal
ො
HtmlHexadecimal
ො
Url
%E0%B7%9C

Code

MD5
7905bf5b004d46d426c6edca5f9563f7
Sha1
b1e204d41501a89200b295d9914e68679ae66e4c
Base64
4Lec

استعمال کی مثالیں

Programming Languages

C:

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

JavaScript:

const char = '\u0DDC';
console.log(char);  // Output: ො

Java:

char c = '\u0DDC';
System.out.println(c);  // Output: ො

JSON:

{"text": "\u0DDC"}  // Value: ො

Python:

char = '\u0DDC'
print(char)  # Output: ො

Perl:

my $char = "\x{0DDC}";
print $char;  # Output: ො

PHP:

$char = "\x{0DDC}";
echo $char;  // Output: ො

Ruby:

char = "\u{0DDC}"
puts char  # Output: ො

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3548;</p>  <!-- Display: ො -->

HTML Hexadecimal:

<p>HTML hex: &#x0DDC;</p>  <!-- Display: ො -->

URL Encoding:

// ො URL encoding
https://unicodefinder.com/search.php?query=%E0%B7%9C

Encodings

MD5:

7905bf5b004d46d426c6edca5f9563f7

SHA1:

b1e204d41501a89200b295d9914e68679ae66e4c

Base64:

4Lec