Unicode Finder

"ఎ" U+0C0E(TELUGU LETTER E)

U+0C0E
שם בלוק
Telugu
שם
TELUGU LETTER E

Programming

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

Web

CSS
\000C0E
HtmlDecimal
ఎ
HtmlHexadecimal
ఎ
Url
%E0%B0%8E

Code

MD5
6ed1dafe028aee44f749cc39aed0b6a2
Sha1
367dba21903c571c07c6f17ea768d690ac00552f
Base64
4LCO

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

Programming Languages

C:

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

JavaScript:

const char = '\u0C0E';
console.log(char);  // Output: ఎ

Java:

char c = '\u0C0E';
System.out.println(c);  // Output: ఎ

JSON:

{"text": "\u0C0E"}  // Value: ఎ

Python:

char = '\u0C0E'
print(char)  # Output: ఎ

Perl:

my $char = "\x{0C0E}";
print $char;  # Output: ఎ

PHP:

$char = "\x{0C0E}";
echo $char;  // Output: ఎ

Ruby:

char = "\u{0C0E}"
puts char  # Output: ఎ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3086;</p>  <!-- Display: ఎ -->

HTML Hexadecimal:

<p>HTML hex: &#x0C0E;</p>  <!-- Display: ఎ -->

URL Encoding:

// ఎ URL encoding
https://unicodefinder.com/search.php?query=%E0%B0%8E

Encodings

MD5:

6ed1dafe028aee44f749cc39aed0b6a2

SHA1:

367dba21903c571c07c6f17ea768d690ac00552f

Base64:

4LCO