Unicode Finder

"С" U+0421(CYRILLIC CAPITAL LETTER ES)

С
U+0421
Название Блока
Cyrillic
Название
CYRILLIC CAPITAL LETTER ES

Programming

C
\u0421
JavaScript
\u0421
Java
\u0421
Json
\u0421
Python
\u0421
Perl
\x{0421}
PHP
\x{0421}
Ruby
\u{0421}
Rust
\u{421}
Go
\u0421

Web

CSS
\000421
HtmlDecimal
С
HtmlHexadecimal
С
Url
%D0%A1

Code

MD5
b3f907c04a31f371eafacd3ab644c27c
Sha1
67bbe9f7599fe8bbcb9dbc99e2d436b254233966
Base64
0KE=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0421';
console.log(char);  // Output: С

Java:

char c = '\u0421';
System.out.println(c);  // Output: С

JSON:

{"text": "\u0421"}  // Value: С

Python:

char = '\u0421'
print(char)  # Output: С

Perl:

my $char = "\x{0421}";
print $char;  # Output: С

PHP:

$char = "\x{0421}";
echo $char;  // Output: С

Ruby:

char = "\u{0421}"
puts char  # Output: С

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000421";  /* Display: С */
}

HTML Decimal:

<p>HTML decimal: &#1057;</p>  <!-- Display: С -->

HTML Hexadecimal:

<p>HTML hex: &#x0421;</p>  <!-- Display: С -->

URL Encoding:

// С URL encoding
https://unicodefinder.com/search.php?query=%D0%A1

Encodings

MD5:

b3f907c04a31f371eafacd3ab644c27c

SHA1:

67bbe9f7599fe8bbcb9dbc99e2d436b254233966

Base64:

0KE=