Unicode Finder

"ї" U+0457(CYRILLIC SMALL LETTER YI)

ї
U+0457
Название Блока
Cyrillic
Название
CYRILLIC SMALL LETTER YI

Programming

C
\u0457
JavaScript
\u0457
Java
\u0457
Json
\u0457
Python
\u0457
Perl
\x{0457}
PHP
\x{0457}
Ruby
\u{0457}
Rust
\u{457}
Go
\u0457

Web

CSS
\000457
HtmlDecimal
ї
HtmlHexadecimal
ї
Url
%D1%97

Code

MD5
2b9c85df934a1592f64d1ebff655dce9
Sha1
0cc6c73b16e8729ea32baf2c502690792e72b2ef
Base64
0Zc=

Примеры Использования

Programming Languages

C:

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

JavaScript:

const char = '\u0457';
console.log(char);  // Output: ї

Java:

char c = '\u0457';
System.out.println(c);  // Output: ї

JSON:

{"text": "\u0457"}  // Value: ї

Python:

char = '\u0457'
print(char)  # Output: ї

Perl:

my $char = "\x{0457}";
print $char;  # Output: ї

PHP:

$char = "\x{0457}";
echo $char;  // Output: ї

Ruby:

char = "\u{0457}"
puts char  # Output: ї

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000457";  /* Display: ї */
}

HTML Decimal:

<p>HTML decimal: &#1111;</p>  <!-- Display: ї -->

HTML Hexadecimal:

<p>HTML hex: &#x0457;</p>  <!-- Display: ї -->

URL Encoding:

// ї URL encoding
https://unicodefinder.com/search.php?query=%D1%97

Encodings

MD5:

2b9c85df934a1592f64d1ebff655dce9

SHA1:

0cc6c73b16e8729ea32baf2c502690792e72b2ef

Base64:

0Zc=