Unicode Finder

"ᜁ" U+1701(TAGALOG LETTER I)

U+1701
Nama Blok
Tagalog
Nama
TAGALOG LETTER I

Programming

C
\u1701
JavaScript
\u1701
Java
\u1701
Json
\u1701
Python
\u1701
Perl
\x{1701}
PHP
\x{1701}
Ruby
\u{1701}
Rust
\u{1701}
Go
\u1701

Web

CSS
\001701
HtmlDecimal
ᜁ
HtmlHexadecimal
ᜁ
Url
%E1%9C%81

Code

MD5
71ab9f14817aa7f1a1eca5c1b65cb1bf
Sha1
384354027232746ff321480e05bc5aec50d55b77
Base64
4ZyB

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1701';
console.log(char);  // Output: ᜁ

Java:

char c = '\u1701';
System.out.println(c);  // Output: ᜁ

JSON:

{"text": "\u1701"}  // Value: ᜁ

Python:

char = '\u1701'
print(char)  # Output: ᜁ

Perl:

my $char = "\x{1701}";
print $char;  # Output: ᜁ

PHP:

$char = "\x{1701}";
echo $char;  // Output: ᜁ

Ruby:

char = "\u{1701}"
puts char  # Output: ᜁ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001701";  /* Display: ᜁ */
}

HTML Decimal:

<p>HTML decimal: &#5889;</p>  <!-- Display: ᜁ -->

HTML Hexadecimal:

<p>HTML hex: &#x1701;</p>  <!-- Display: ᜁ -->

URL Encoding:

// ᜁ URL encoding
https://unicodefinder.com/search.php?query=%E1%9C%81

Encodings

MD5:

71ab9f14817aa7f1a1eca5c1b65cb1bf

SHA1:

384354027232746ff321480e05bc5aec50d55b77

Base64:

4ZyB