Unicode Finder

"ԃ" U+0503(CYRILLIC SMALL LETTER KOMI DJE)

ԃ
U+0503
Block Name
Cyrillic Supplement
Name
CYRILLIC SMALL LETTER KOMI DJE

Programming

C
\u0503
JavaScript
\u0503
Java
\u0503
Json
\u0503
Python
\u0503
Perl
\x{0503}
PHP
\x{0503}
Ruby
\u{0503}
Rust
\u{503}
Go
\u0503

Web

CSS
\000503
HtmlDecimal
ԃ
HtmlHexadecimal
ԃ
Url
%D4%83

Code

MD5
510304035336f6ae0f03c54bba3368c3
Sha1
58f5363f6b04b0971c31335cd654387d12986863
Base64
1IM=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0503';
console.log(char);  // Output: ԃ

Java:

char c = '\u0503';
System.out.println(c);  // Output: ԃ

JSON:

{"text": "\u0503"}  // Value: ԃ

Python:

char = '\u0503'
print(char)  # Output: ԃ

Perl:

my $char = "\x{0503}";
print $char;  # Output: ԃ

PHP:

$char = "\x{0503}";
echo $char;  // Output: ԃ

Ruby:

char = "\u{0503}"
puts char  # Output: ԃ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000503";  /* Display: ԃ */
}

HTML Decimal:

<p>HTML decimal: &#1283;</p>  <!-- Display: ԃ -->

HTML Hexadecimal:

<p>HTML hex: &#x0503;</p>  <!-- Display: ԃ -->

URL Encoding:

// ԃ URL encoding
https://unicodefinder.com/search.php?query=%D4%83

Encodings

MD5:

510304035336f6ae0f03c54bba3368c3

SHA1:

58f5363f6b04b0971c31335cd654387d12986863

Base64:

1IM=