Unicode Finder

"Ǐ" U+01CF(LATIN CAPITAL LETTER I WITH CARON)

Ǐ
U+01CF
Tên Khối
Latin Extended-B
Tên
LATIN CAPITAL LETTER I WITH CARON

Programming

C
\u01CF
JavaScript
\u01CF
Java
\u01CF
Json
\u01CF
Python
\u01CF
Perl
\x{01CF}
PHP
\x{01CF}
Ruby
\u{01CF}
Rust
\u{1CF}
Go
\u01CF

Web

CSS
\0001CF
HtmlDecimal
Ǐ
HtmlHexadecimal
Ǐ
Url
%C7%8F

Code

MD5
e1e275bd1de17236c2a6d024aab9cbd7
Sha1
08c6997567d1502f2a51734095706be3b4d55f25
Base64
x48=

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u01CF';
console.log(char);  // Output: Ǐ

Java:

char c = '\u01CF';
System.out.println(c);  // Output: Ǐ

JSON:

{"text": "\u01CF"}  // Value: Ǐ

Python:

char = '\u01CF'
print(char)  # Output: Ǐ

Perl:

my $char = "\x{01CF}";
print $char;  # Output: Ǐ

PHP:

$char = "\x{01CF}";
echo $char;  // Output: Ǐ

Ruby:

char = "\u{01CF}"
puts char  # Output: Ǐ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#463;</p>  <!-- Display: Ǐ -->

HTML Hexadecimal:

<p>HTML hex: &#x01CF;</p>  <!-- Display: Ǐ -->

URL Encoding:

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

Encodings

MD5:

e1e275bd1de17236c2a6d024aab9cbd7

SHA1:

08c6997567d1502f2a51734095706be3b4d55f25

Base64:

x48=