Unicode Finder

"ì" U+00EC(LATIN SMALL LETTER I WITH GRAVE)

ì
U+00EC
Block Name
Latin-1 Supplement
Name
LATIN SMALL LETTER I WITH GRAVE

Programming

C
\u00EC
JavaScript
\u00EC
Java
\u00EC
Json
\u00EC
Python
\u00EC
Perl
\x{00EC}
PHP
\x{00EC}
Ruby
\u{00EC}
Rust
\u{EC}
Go
\u00EC

Web

CSS
\0000EC
HtmlDecimal
ì
HtmlHexadecimal
ì
Url
%C3%AC

Code

MD5
6e9f916ea65348c24cc19f063981d35a
Sha1
f8d4be239c819427e6a8d8e00cd7407aef9824e0
Base64
w6w=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u00EC';
console.log(char);  // Output: ì

Java:

char c = '\u00EC';
System.out.println(c);  // Output: ì

JSON:

{"text": "\u00EC"}  // Value: ì

Python:

char = '\u00EC'
print(char)  # Output: ì

Perl:

my $char = "\x{00EC}";
print $char;  # Output: ì

PHP:

$char = "\x{00EC}";
echo $char;  // Output: ì

Ruby:

char = "\u{00EC}"
puts char  # Output: ì

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0000EC";  /* Display: ì */
}

HTML Decimal:

<p>HTML decimal: &#236;</p>  <!-- Display: ì -->

HTML Hexadecimal:

<p>HTML hex: &#x00EC;</p>  <!-- Display: ì -->

URL Encoding:

// ì URL encoding
https://unicodefinder.com/search.php?query=%C3%AC

Encodings

MD5:

6e9f916ea65348c24cc19f063981d35a

SHA1:

f8d4be239c819427e6a8d8e00cd7407aef9824e0

Base64:

w6w=