Unicode Finder

"෭" U+0DED(SINHALA LITH DIGIT SEVEN)

U+0DED
Όνομα Μπλοκ
Sinhala
Όνομα
SINHALA LITH DIGIT SEVEN

Programming

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

Web

CSS
\000DED
HtmlDecimal
෭
HtmlHexadecimal
෭
Url
%E0%B7%AD

Code

MD5
139162d54385652ab043d841389285ce
Sha1
3f7e8405a3e443353fbd316dc1e5f4722c68299a
Base64
4Let

Παραδείγματα Χρήσης

Programming Languages

C:

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

JavaScript:

const char = '\u0DED';
console.log(char);  // Output: ෭

Java:

char c = '\u0DED';
System.out.println(c);  // Output: ෭

JSON:

{"text": "\u0DED"}  // Value: ෭

Python:

char = '\u0DED'
print(char)  # Output: ෭

Perl:

my $char = "\x{0DED}";
print $char;  # Output: ෭

PHP:

$char = "\x{0DED}";
echo $char;  // Output: ෭

Ruby:

char = "\u{0DED}"
puts char  # Output: ෭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3565;</p>  <!-- Display: ෭ -->

HTML Hexadecimal:

<p>HTML hex: &#x0DED;</p>  <!-- Display: ෭ -->

URL Encoding:

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

Encodings

MD5:

139162d54385652ab043d841389285ce

SHA1:

3f7e8405a3e443353fbd316dc1e5f4722c68299a

Base64:

4Let