Unicode Finder

"Ԙ" U+0518(CYRILLIC CAPITAL LETTER YAE)

Ԙ
U+0518
Название Блока
Cyrillic Supplement
Название
CYRILLIC CAPITAL LETTER YAE

Programming

C
\u0518
JavaScript
\u0518
Java
\u0518
Json
\u0518
Python
\u0518
Perl
\x{0518}
PHP
\x{0518}
Ruby
\u{0518}
Rust
\u{518}
Go
\u0518

Web

CSS
\000518
HtmlDecimal
Ԙ
HtmlHexadecimal
Ԙ
Url
%D4%98

Code

MD5
290151ceeeac9330a93999c624db4ee1
Sha1
904c456f11ee5f4773c4df998a9236300679dac9
Base64
1Jg=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0518';
console.log(char);  // Output: Ԙ

Java:

char c = '\u0518';
System.out.println(c);  // Output: Ԙ

JSON:

{"text": "\u0518"}  // Value: Ԙ

Python:

char = '\u0518'
print(char)  # Output: Ԙ

Perl:

my $char = "\x{0518}";
print $char;  # Output: Ԙ

PHP:

$char = "\x{0518}";
echo $char;  // Output: Ԙ

Ruby:

char = "\u{0518}"
puts char  # Output: Ԙ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000518";  /* Display: Ԙ */
}

HTML Decimal:

<p>HTML decimal: &#1304;</p>  <!-- Display: Ԙ -->

HTML Hexadecimal:

<p>HTML hex: &#x0518;</p>  <!-- Display: Ԙ -->

URL Encoding:

// Ԙ URL encoding
https://unicodefinder.com/search.php?query=%D4%98

Encodings

MD5:

290151ceeeac9330a93999c624db4ee1

SHA1:

904c456f11ee5f4773c4df998a9236300679dac9

Base64:

1Jg=