Unicode Finder

"ෟ" U+0DDF(SINHALA VOWEL SIGN GAYANUKITTA)

U+0DDF
שם בלוק
Sinhala
שם
SINHALA VOWEL SIGN GAYANUKITTA

Programming

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

Web

CSS
\000DDF
HtmlDecimal
ෟ
HtmlHexadecimal
ෟ
Url
%E0%B7%9F

Code

MD5
8b861736b305c139fdef9d64d99c101c
Sha1
433444511f56b856ea3153319168a872ffaf02b8
Base64
4Lef

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

Programming Languages

C:

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

JavaScript:

const char = '\u0DDF';
console.log(char);  // Output: ෟ

Java:

char c = '\u0DDF';
System.out.println(c);  // Output: ෟ

JSON:

{"text": "\u0DDF"}  // Value: ෟ

Python:

char = '\u0DDF'
print(char)  # Output: ෟ

Perl:

my $char = "\x{0DDF}";
print $char;  # Output: ෟ

PHP:

$char = "\x{0DDF}";
echo $char;  // Output: ෟ

Ruby:

char = "\u{0DDF}"
puts char  # Output: ෟ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3551;</p>  <!-- Display: ෟ -->

HTML Hexadecimal:

<p>HTML hex: &#x0DDF;</p>  <!-- Display: ෟ -->

URL Encoding:

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

Encodings

MD5:

8b861736b305c139fdef9d64d99c101c

SHA1:

433444511f56b856ea3153319168a872ffaf02b8

Base64:

4Lef