Unicode Finder

"ෞ" U+0DDE(SINHALA VOWEL SIGN KOMBUVA HAA GAYANUKITTA)

U+0DDE
بلاک کا نام
Sinhala
نام
SINHALA VOWEL SIGN KOMBUVA HAA GAYANUKITTA

Programming

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

Web

CSS
\000DDE
HtmlDecimal
ෞ
HtmlHexadecimal
ෞ
Url
%E0%B7%9E

Code

MD5
c82da0b49ffe6d0c8886020da48a2e49
Sha1
1eb335839370bdcf917911dd5d4738a48e33a8ae
Base64
4Lee

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

Programming Languages

C:

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

JavaScript:

const char = '\u0DDE';
console.log(char);  // Output: ෞ

Java:

char c = '\u0DDE';
System.out.println(c);  // Output: ෞ

JSON:

{"text": "\u0DDE"}  // Value: ෞ

Python:

char = '\u0DDE'
print(char)  # Output: ෞ

Perl:

my $char = "\x{0DDE}";
print $char;  # Output: ෞ

PHP:

$char = "\x{0DDE}";
echo $char;  // Output: ෞ

Ruby:

char = "\u{0DDE}"
puts char  # Output: ෞ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3550;</p>  <!-- Display: ෞ -->

HTML Hexadecimal:

<p>HTML hex: &#x0DDE;</p>  <!-- Display: ෞ -->

URL Encoding:

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

Encodings

MD5:

c82da0b49ffe6d0c8886020da48a2e49

SHA1:

1eb335839370bdcf917911dd5d4738a48e33a8ae

Base64:

4Lee