Unicode Finder

"ҍ" U+048D(CYRILLIC SMALL LETTER SEMISOFT SIGN)

ҍ
U+048D
Название Блока
Cyrillic
Название
CYRILLIC SMALL LETTER SEMISOFT SIGN

Programming

C
\u048D
JavaScript
\u048D
Java
\u048D
Json
\u048D
Python
\u048D
Perl
\x{048D}
PHP
\x{048D}
Ruby
\u{048D}
Rust
\u{48D}
Go
\u048D

Web

CSS
\00048D
HtmlDecimal
ҍ
HtmlHexadecimal
ҍ
Url
%D2%8D

Code

MD5
688290aea86d7d05d29c1afa6ff43805
Sha1
d69c45b4205e3b01ac085e8b64e652f1463e6d72
Base64
0o0=

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

Programming Languages

C:

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

JavaScript:

const char = '\u048D';
console.log(char);  // Output: ҍ

Java:

char c = '\u048D';
System.out.println(c);  // Output: ҍ

JSON:

{"text": "\u048D"}  // Value: ҍ

Python:

char = '\u048D'
print(char)  # Output: ҍ

Perl:

my $char = "\x{048D}";
print $char;  # Output: ҍ

PHP:

$char = "\x{048D}";
echo $char;  // Output: ҍ

Ruby:

char = "\u{048D}"
puts char  # Output: ҍ

Rust:

let c = '\u{48D}';
println!("{}", c);  // Output: ҍ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00048D";  /* Display: ҍ */
}

HTML Decimal:

<p>HTML decimal: &#1165;</p>  <!-- Display: ҍ -->

HTML Hexadecimal:

<p>HTML hex: &#x048D;</p>  <!-- Display: ҍ -->

URL Encoding:

// ҍ URL encoding
https://unicodefinder.com/search.php?query=%D2%8D

Encodings

MD5:

688290aea86d7d05d29c1afa6ff43805

SHA1:

d69c45b4205e3b01ac085e8b64e652f1463e6d72

Base64:

0o0=