Unicode Finder

"Ì" U+00CC(LATIN CAPITAL LETTER I WITH GRAVE)

Ì
U+00CC
ชื่อบล็อก
Latin-1 Supplement
ชื่อ
LATIN CAPITAL LETTER I WITH GRAVE

Programming

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

Web

CSS
\0000CC
HtmlDecimal
Ì
HtmlHexadecimal
Ì
Url
%C3%8C

Code

MD5
9eb4571b6a5e7986e47603bb3676b3f1
Sha1
ef84a0eec437a10d4559c5f9266b6efe8e2f30d7
Base64
w4w=

ตัวอย่างการใช้งาน

Programming Languages

C:

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

JavaScript:

const char = '\u00CC';
console.log(char);  // Output: Ì

Java:

char c = '\u00CC';
System.out.println(c);  // Output: Ì

JSON:

{"text": "\u00CC"}  // Value: Ì

Python:

char = '\u00CC'
print(char)  # Output: Ì

Perl:

my $char = "\x{00CC}";
print $char;  # Output: Ì

PHP:

$char = "\x{00CC}";
echo $char;  // Output: Ì

Ruby:

char = "\u{00CC}"
puts char  # Output: Ì

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#204;</p>  <!-- Display: Ì -->

HTML Hexadecimal:

<p>HTML hex: &#x00CC;</p>  <!-- Display: Ì -->

URL Encoding:

// Ì URL encoding
https://unicodefinder.com/search.php?query=%C3%8C

Encodings

MD5:

9eb4571b6a5e7986e47603bb3676b3f1

SHA1:

ef84a0eec437a10d4559c5f9266b6efe8e2f30d7

Base64:

w4w=