Unicode Finder

"҄" U+0484(COMBINING CYRILLIC PALATALIZATION)

҄
U+0484
Назва Блоку
Cyrillic
Назва
COMBINING CYRILLIC PALATALIZATION

Programming

C
\u0484
JavaScript
\u0484
Java
\u0484
Json
\u0484
Python
\u0484
Perl
\x{0484}
PHP
\x{0484}
Ruby
\u{0484}
Rust
\u{484}
Go
\u0484

Web

CSS
\000484
HtmlDecimal
҄
HtmlHexadecimal
҄
Url
%D2%84

Code

MD5
98d59333fbd28e8312ab790e0da0c6fd
Sha1
cdecf3142e7a53f5c3f11249a7b87e9d061328d9
Base64
0oQ=

Приклади Використання

Programming Languages

C:

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

JavaScript:

const char = '\u0484';
console.log(char);  // Output: ҄

Java:

char c = '\u0484';
System.out.println(c);  // Output: ҄

JSON:

{"text": "\u0484"}  // Value: ҄

Python:

char = '\u0484'
print(char)  # Output: ҄

Perl:

my $char = "\x{0484}";
print $char;  # Output: ҄

PHP:

$char = "\x{0484}";
echo $char;  // Output: ҄

Ruby:

char = "\u{0484}"
puts char  # Output: ҄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000484";  /* Display: ҄ */
}

HTML Decimal:

<p>HTML decimal: &#1156;</p>  <!-- Display: ҄ -->

HTML Hexadecimal:

<p>HTML hex: &#x0484;</p>  <!-- Display: ҄ -->

URL Encoding:

// ҄ URL encoding
https://unicodefinder.com/search.php?query=%D2%84

Encodings

MD5:

98d59333fbd28e8312ab790e0da0c6fd

SHA1:

cdecf3142e7a53f5c3f11249a7b87e9d061328d9

Base64:

0oQ=