Unicode Finder

"ෛ" U+0DDB(SINHALA VOWEL SIGN KOMBU DEKA)

U+0DDB
Nama Blok
Sinhala
Nama
SINHALA VOWEL SIGN KOMBU DEKA

Programming

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

Web

CSS
\000DDB
HtmlDecimal
ෛ
HtmlHexadecimal
ෛ
Url
%E0%B7%9B

Code

MD5
7e15abc6061287d469cae0b5c641c987
Sha1
7fd46b970841af61749a442b2fa83928b4daadb4
Base64
4Leb

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u0DDB';
console.log(char);  // Output: ෛ

Java:

char c = '\u0DDB';
System.out.println(c);  // Output: ෛ

JSON:

{"text": "\u0DDB"}  // Value: ෛ

Python:

char = '\u0DDB'
print(char)  # Output: ෛ

Perl:

my $char = "\x{0DDB}";
print $char;  # Output: ෛ

PHP:

$char = "\x{0DDB}";
echo $char;  // Output: ෛ

Ruby:

char = "\u{0DDB}"
puts char  # Output: ෛ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3547;</p>  <!-- Display: ෛ -->

HTML Hexadecimal:

<p>HTML hex: &#x0DDB;</p>  <!-- Display: ෛ -->

URL Encoding:

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

Encodings

MD5:

7e15abc6061287d469cae0b5c641c987

SHA1:

7fd46b970841af61749a442b2fa83928b4daadb4

Base64:

4Leb