Unicode Finder

"ಏ" U+0C8F(KANNADA LETTER EE)

U+0C8F
اسم الكتلة
Kannada
الاسم
KANNADA LETTER EE

Programming

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

Web

CSS
\000C8F
HtmlDecimal
ಏ
HtmlHexadecimal
ಏ
Url
%E0%B2%8F

Code

MD5
7714d316289d729b689587074f8354e9
Sha1
59abdee642dfa2567691db7c0a69df1b94204bda
Base64
4LKP

أمثلة الاستخدام

Programming Languages

C:

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

JavaScript:

const char = '\u0C8F';
console.log(char);  // Output: ಏ

Java:

char c = '\u0C8F';
System.out.println(c);  // Output: ಏ

JSON:

{"text": "\u0C8F"}  // Value: ಏ

Python:

char = '\u0C8F'
print(char)  # Output: ಏ

Perl:

my $char = "\x{0C8F}";
print $char;  # Output: ಏ

PHP:

$char = "\x{0C8F}";
echo $char;  // Output: ಏ

Ruby:

char = "\u{0C8F}"
puts char  # Output: ಏ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3215;</p>  <!-- Display: ಏ -->

HTML Hexadecimal:

<p>HTML hex: &#x0C8F;</p>  <!-- Display: ಏ -->

URL Encoding:

// ಏ URL encoding
https://unicodefinder.com/search.php?query=%E0%B2%8F

Encodings

MD5:

7714d316289d729b689587074f8354e9

SHA1:

59abdee642dfa2567691db7c0a69df1b94204bda

Base64:

4LKP