Unicode Finder

"Ԗ" U+0516(CYRILLIC CAPITAL LETTER RHA)

Ԗ
U+0516
Название Блока
Cyrillic Supplement
Название
CYRILLIC CAPITAL LETTER RHA

Programming

C
\u0516
JavaScript
\u0516
Java
\u0516
Json
\u0516
Python
\u0516
Perl
\x{0516}
PHP
\x{0516}
Ruby
\u{0516}
Rust
\u{516}
Go
\u0516

Web

CSS
\000516
HtmlDecimal
Ԗ
HtmlHexadecimal
Ԗ
Url
%D4%96

Code

MD5
92986e743c11bbd6b0f4031b254daede
Sha1
3f3d694c2f93caf25e3c67fd675af5b1aec5bd53
Base64
1JY=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0516';
console.log(char);  // Output: Ԗ

Java:

char c = '\u0516';
System.out.println(c);  // Output: Ԗ

JSON:

{"text": "\u0516"}  // Value: Ԗ

Python:

char = '\u0516'
print(char)  # Output: Ԗ

Perl:

my $char = "\x{0516}";
print $char;  # Output: Ԗ

PHP:

$char = "\x{0516}";
echo $char;  // Output: Ԗ

Ruby:

char = "\u{0516}"
puts char  # Output: Ԗ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000516";  /* Display: Ԗ */
}

HTML Decimal:

<p>HTML decimal: &#1302;</p>  <!-- Display: Ԗ -->

HTML Hexadecimal:

<p>HTML hex: &#x0516;</p>  <!-- Display: Ԗ -->

URL Encoding:

// Ԗ URL encoding
https://unicodefinder.com/search.php?query=%D4%96

Encodings

MD5:

92986e743c11bbd6b0f4031b254daede

SHA1:

3f3d694c2f93caf25e3c67fd675af5b1aec5bd53

Base64:

1JY=