Unicode Finder

"ҫ" U+04AB(CYRILLIC SMALL LETTER ES WITH DESCENDER)

ҫ
U+04AB
Название Блока
Cyrillic
Название
CYRILLIC SMALL LETTER ES WITH DESCENDER

Programming

C
\u04AB
JavaScript
\u04AB
Java
\u04AB
Json
\u04AB
Python
\u04AB
Perl
\x{04AB}
PHP
\x{04AB}
Ruby
\u{04AB}
Rust
\u{4AB}
Go
\u04AB

Web

CSS
\0004AB
HtmlDecimal
ҫ
HtmlHexadecimal
ҫ
Url
%D2%AB

Code

MD5
5484f11a636f706e5a68224d8108b9ce
Sha1
f10e689beac861b82f8fe620822a037faf1f740d
Base64
0qs=

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

Programming Languages

C:

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

JavaScript:

const char = '\u04AB';
console.log(char);  // Output: ҫ

Java:

char c = '\u04AB';
System.out.println(c);  // Output: ҫ

JSON:

{"text": "\u04AB"}  // Value: ҫ

Python:

char = '\u04AB'
print(char)  # Output: ҫ

Perl:

my $char = "\x{04AB}";
print $char;  # Output: ҫ

PHP:

$char = "\x{04AB}";
echo $char;  // Output: ҫ

Ruby:

char = "\u{04AB}"
puts char  # Output: ҫ

Rust:

let c = '\u{4AB}';
println!("{}", c);  // Output: ҫ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0004AB";  /* Display: ҫ */
}

HTML Decimal:

<p>HTML decimal: &#1195;</p>  <!-- Display: ҫ -->

HTML Hexadecimal:

<p>HTML hex: &#x04AB;</p>  <!-- Display: ҫ -->

URL Encoding:

// ҫ URL encoding
https://unicodefinder.com/search.php?query=%D2%AB

Encodings

MD5:

5484f11a636f706e5a68224d8108b9ce

SHA1:

f10e689beac861b82f8fe620822a037faf1f740d

Base64:

0qs=