Unicode Finder

"и" U+0438(CYRILLIC SMALL LETTER I)

и
U+0438
Название Блока
Cyrillic
Название
CYRILLIC SMALL LETTER I

Programming

C
\u0438
JavaScript
\u0438
Java
\u0438
Json
\u0438
Python
\u0438
Perl
\x{0438}
PHP
\x{0438}
Ruby
\u{0438}
Rust
\u{438}
Go
\u0438

Web

CSS
\000438
HtmlDecimal
и
HtmlHexadecimal
и
Url
%D0%B8

Code

MD5
4bfb6432d7bb214319efc6d48e31988d
Sha1
a59e2c2429fe7a881f566ff87bafa6c5e37337d3
Base64
0Lg=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0438';
console.log(char);  // Output: и

Java:

char c = '\u0438';
System.out.println(c);  // Output: и

JSON:

{"text": "\u0438"}  // Value: и

Python:

char = '\u0438'
print(char)  # Output: и

Perl:

my $char = "\x{0438}";
print $char;  # Output: и

PHP:

$char = "\x{0438}";
echo $char;  // Output: и

Ruby:

char = "\u{0438}"
puts char  # Output: и

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000438";  /* Display: и */
}

HTML Decimal:

<p>HTML decimal: &#1080;</p>  <!-- Display: и -->

HTML Hexadecimal:

<p>HTML hex: &#x0438;</p>  <!-- Display: и -->

URL Encoding:

// и URL encoding
https://unicodefinder.com/search.php?query=%D0%B8

Encodings

MD5:

4bfb6432d7bb214319efc6d48e31988d

SHA1:

a59e2c2429fe7a881f566ff87bafa6c5e37337d3

Base64:

0Lg=