Unicode Finder

"ෲ" U+0DF2(SINHALA VOWEL SIGN DIGA GAETTA-PILLA)

U+0DF2
نام بلوک
Sinhala
نام
SINHALA VOWEL SIGN DIGA GAETTA-PILLA

Programming

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

Web

CSS
\000DF2
HtmlDecimal
ෲ
HtmlHexadecimal
ෲ
Url
%E0%B7%B2

Code

MD5
49c721f1530222317e05d1c4bcbf3ecb
Sha1
5a6bc25189f2ca1f945cc64202662229c3785a99
Base64
4Ley

مثال‌های استفاده

Programming Languages

C:

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

JavaScript:

const char = '\u0DF2';
console.log(char);  // Output: ෲ

Java:

char c = '\u0DF2';
System.out.println(c);  // Output: ෲ

JSON:

{"text": "\u0DF2"}  // Value: ෲ

Python:

char = '\u0DF2'
print(char)  # Output: ෲ

Perl:

my $char = "\x{0DF2}";
print $char;  # Output: ෲ

PHP:

$char = "\x{0DF2}";
echo $char;  // Output: ෲ

Ruby:

char = "\u{0DF2}"
puts char  # Output: ෲ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3570;</p>  <!-- Display: ෲ -->

HTML Hexadecimal:

<p>HTML hex: &#x0DF2;</p>  <!-- Display: ෲ -->

URL Encoding:

// ෲ URL encoding
https://unicodefinder.com/search.php?query=%E0%B7%B2

Encodings

MD5:

49c721f1530222317e05d1c4bcbf3ecb

SHA1:

5a6bc25189f2ca1f945cc64202662229c3785a99

Base64:

4Ley