Unicode Finder

"Ï" U+00CF(LATIN CAPITAL LETTER I WITH DIAERESIS)

Ï
U+00CF
Block Name
Latin-1 Supplement
Name
LATIN CAPITAL LETTER I WITH DIAERESIS

Programming

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

Web

CSS
\0000CF
HtmlDecimal
Ï
HtmlHexadecimal
Ï
Url
%C3%8F

Code

MD5
c80488d6f976f1d7f161d7079043a5e9
Sha1
8879b08481711eec2473ebf58beaf7f499d1722e
Base64
w48=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u00CF';
console.log(char);  // Output: Ï

Java:

char c = '\u00CF';
System.out.println(c);  // Output: Ï

JSON:

{"text": "\u00CF"}  // Value: Ï

Python:

char = '\u00CF'
print(char)  # Output: Ï

Perl:

my $char = "\x{00CF}";
print $char;  # Output: Ï

PHP:

$char = "\x{00CF}";
echo $char;  // Output: Ï

Ruby:

char = "\u{00CF}"
puts char  # Output: Ï

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#207;</p>  <!-- Display: Ï -->

HTML Hexadecimal:

<p>HTML hex: &#x00CF;</p>  <!-- Display: Ï -->

URL Encoding:

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

Encodings

MD5:

c80488d6f976f1d7f161d7079043a5e9

SHA1:

8879b08481711eec2473ebf58beaf7f499d1722e

Base64:

w48=