Unicode Finder

"с" U+0441(CYRILLIC SMALL LETTER ES)

с
U+0441
Название Блока
Cyrillic
Название
CYRILLIC SMALL LETTER ES

Programming

C
\u0441
JavaScript
\u0441
Java
\u0441
Json
\u0441
Python
\u0441
Perl
\x{0441}
PHP
\x{0441}
Ruby
\u{0441}
Rust
\u{441}
Go
\u0441

Web

CSS
\000441
HtmlDecimal
с
HtmlHexadecimal
с
Url
%D1%81

Code

MD5
91b2417d13d076fabf08a2684f817476
Sha1
b40bbca36d2d172e26ef39be5537d9ecbf04546d
Base64
0YE=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0441';
console.log(char);  // Output: с

Java:

char c = '\u0441';
System.out.println(c);  // Output: с

JSON:

{"text": "\u0441"}  // Value: с

Python:

char = '\u0441'
print(char)  # Output: с

Perl:

my $char = "\x{0441}";
print $char;  # Output: с

PHP:

$char = "\x{0441}";
echo $char;  // Output: с

Ruby:

char = "\u{0441}"
puts char  # Output: с

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000441";  /* Display: с */
}

HTML Decimal:

<p>HTML decimal: &#1089;</p>  <!-- Display: с -->

HTML Hexadecimal:

<p>HTML hex: &#x0441;</p>  <!-- Display: с -->

URL Encoding:

// с URL encoding
https://unicodefinder.com/search.php?query=%D1%81

Encodings

MD5:

91b2417d13d076fabf08a2684f817476

SHA1:

b40bbca36d2d172e26ef39be5537d9ecbf04546d

Base64:

0YE=