Unicode Finder

"ෳ" U+0DF3(SINHALA VOWEL SIGN DIGA GAYANUKITTA)

U+0DF3
بلاک کا نام
Sinhala
نام
SINHALA VOWEL SIGN DIGA GAYANUKITTA

Programming

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

Web

CSS
\000DF3
HtmlDecimal
ෳ
HtmlHexadecimal
ෳ
Url
%E0%B7%B3

Code

MD5
719c2b6f058de606e2277d22e1b844ce
Sha1
1227fdd57f53050ee448dff13cb806ee1d01fdda
Base64
4Lez

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

Programming Languages

C:

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

JavaScript:

const char = '\u0DF3';
console.log(char);  // Output: ෳ

Java:

char c = '\u0DF3';
System.out.println(c);  // Output: ෳ

JSON:

{"text": "\u0DF3"}  // Value: ෳ

Python:

char = '\u0DF3'
print(char)  # Output: ෳ

Perl:

my $char = "\x{0DF3}";
print $char;  # Output: ෳ

PHP:

$char = "\x{0DF3}";
echo $char;  // Output: ෳ

Ruby:

char = "\u{0DF3}"
puts char  # Output: ෳ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3571;</p>  <!-- Display: ෳ -->

HTML Hexadecimal:

<p>HTML hex: &#x0DF3;</p>  <!-- Display: ෳ -->

URL Encoding:

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

Encodings

MD5:

719c2b6f058de606e2277d22e1b844ce

SHA1:

1227fdd57f53050ee448dff13cb806ee1d01fdda

Base64:

4Lez