Unicode Finder

"ı" U+0131(LATIN SMALL LETTER DOTLESS I)

ı
U+0131
Blok Adı
Latin Extended-A
Ad
LATIN SMALL LETTER DOTLESS I

Programming

C
\u0131
JavaScript
\u0131
Java
\u0131
Json
\u0131
Python
\u0131
Perl
\x{0131}
PHP
\x{0131}
Ruby
\u{0131}
Rust
\u{131}
Go
\u0131

Web

CSS
\000131
HtmlDecimal
ı
HtmlHexadecimal
ı
Url
%C4%B1

Code

MD5
8ded568231f5e3b7f6e65ae73f6f9a81
Sha1
d44c997953a510d72d50e873ff273de2f5e4cf77
Base64
xLE=

Kullanım Örnekleri

Programming Languages

C:

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

JavaScript:

const char = '\u0131';
console.log(char);  // Output: ı

Java:

char c = '\u0131';
System.out.println(c);  // Output: ı

JSON:

{"text": "\u0131"}  // Value: ı

Python:

char = '\u0131'
print(char)  # Output: ı

Perl:

my $char = "\x{0131}";
print $char;  # Output: ı

PHP:

$char = "\x{0131}";
echo $char;  // Output: ı

Ruby:

char = "\u{0131}"
puts char  # Output: ı

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000131";  /* Display: ı */
}

HTML Decimal:

<p>HTML decimal: &#305;</p>  <!-- Display: ı -->

HTML Hexadecimal:

<p>HTML hex: &#x0131;</p>  <!-- Display: ı -->

URL Encoding:

// ı URL encoding
https://unicodefinder.com/search.php?query=%C4%B1

Encodings

MD5:

8ded568231f5e3b7f6e65ae73f6f9a81

SHA1:

d44c997953a510d72d50e873ff273de2f5e4cf77

Base64:

xLE=