Unicode Finder

"İ" U+0130(LATIN CAPITAL LETTER I WITH DOT ABOVE)

İ
U+0130
Block Name
Latin Extended-A
Name
LATIN CAPITAL LETTER I WITH DOT ABOVE

Programming

C
\u0130
JavaScript
\u0130
Java
\u0130
Json
\u0130
Python
\u0130
Perl
\x{0130}
PHP
\x{0130}
Ruby
\u{0130}
Rust
\u{130}
Go
\u0130

Web

CSS
\000130
HtmlDecimal
İ
HtmlHexadecimal
İ
Url
%C4%B0

Code

MD5
1a313f370a5ba8fd5dad6f793d84ff21
Sha1
9a0e5b94555df3dd524cf954b7cd098d04c0c5d2
Base64
xLA=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0130';
console.log(char);  // Output: İ

Java:

char c = '\u0130';
System.out.println(c);  // Output: İ

JSON:

{"text": "\u0130"}  // Value: İ

Python:

char = '\u0130'
print(char)  # Output: İ

Perl:

my $char = "\x{0130}";
print $char;  # Output: İ

PHP:

$char = "\x{0130}";
echo $char;  // Output: İ

Ruby:

char = "\u{0130}"
puts char  # Output: İ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000130";  /* Display: İ */
}

HTML Decimal:

<p>HTML decimal: &#304;</p>  <!-- Display: İ -->

HTML Hexadecimal:

<p>HTML hex: &#x0130;</p>  <!-- Display: İ -->

URL Encoding:

// İ URL encoding
https://unicodefinder.com/search.php?query=%C4%B0

Encodings

MD5:

1a313f370a5ba8fd5dad6f793d84ff21

SHA1:

9a0e5b94555df3dd524cf954b7cd098d04c0c5d2

Base64:

xLA=