Unicode Finder

"෬" U+0DEC(SINHALA LITH DIGIT SIX)

U+0DEC
Nama Blok
Sinhala
Nama
SINHALA LITH DIGIT SIX

Programming

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

Web

CSS
\000DEC
HtmlDecimal
෬
HtmlHexadecimal
෬
Url
%E0%B7%AC

Code

MD5
2bce15d5fc0421f8a19ed2c02bcca5ee
Sha1
f753c696a009c4cba416f40073f73307eacb7f1e
Base64
4Les

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u0DEC';
console.log(char);  // Output: ෬

Java:

char c = '\u0DEC';
System.out.println(c);  // Output: ෬

JSON:

{"text": "\u0DEC"}  // Value: ෬

Python:

char = '\u0DEC'
print(char)  # Output: ෬

Perl:

my $char = "\x{0DEC}";
print $char;  # Output: ෬

PHP:

$char = "\x{0DEC}";
echo $char;  // Output: ෬

Ruby:

char = "\u{0DEC}"
puts char  # Output: ෬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3564;</p>  <!-- Display: ෬ -->

HTML Hexadecimal:

<p>HTML hex: &#x0DEC;</p>  <!-- Display: ෬ -->

URL Encoding:

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

Encodings

MD5:

2bce15d5fc0421f8a19ed2c02bcca5ee

SHA1:

f753c696a009c4cba416f40073f73307eacb7f1e

Base64:

4Les