Unicode Finder

"ԯ" U+052F(CYRILLIC SMALL LETTER EL WITH DESCENDER)

ԯ
U+052F
Pangalan ng Block
Cyrillic Supplement
Pangalan
CYRILLIC SMALL LETTER EL WITH DESCENDER

Programming

C
\u052F
JavaScript
\u052F
Java
\u052F
Json
\u052F
Python
\u052F
Perl
\x{052F}
PHP
\x{052F}
Ruby
\u{052F}
Rust
\u{52F}
Go
\u052F

Web

CSS
\00052F
HtmlDecimal
ԯ
HtmlHexadecimal
ԯ
Url
%D4%AF

Code

MD5
b0c4b59036d14e93e850861037372e87
Sha1
0272043caee966cb9352a517da012995bcfde8b5
Base64
1K8=

Mga Halimbawa ng Paggamit

Programming Languages

C:

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

JavaScript:

const char = '\u052F';
console.log(char);  // Output: ԯ

Java:

char c = '\u052F';
System.out.println(c);  // Output: ԯ

JSON:

{"text": "\u052F"}  // Value: ԯ

Python:

char = '\u052F'
print(char)  # Output: ԯ

Perl:

my $char = "\x{052F}";
print $char;  # Output: ԯ

PHP:

$char = "\x{052F}";
echo $char;  // Output: ԯ

Ruby:

char = "\u{052F}"
puts char  # Output: ԯ

Rust:

let c = '\u{52F}';
println!("{}", c);  // Output: ԯ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00052F";  /* Display: ԯ */
}

HTML Decimal:

<p>HTML decimal: &#1327;</p>  <!-- Display: ԯ -->

HTML Hexadecimal:

<p>HTML hex: &#x052F;</p>  <!-- Display: ԯ -->

URL Encoding:

// ԯ URL encoding
https://unicodefinder.com/search.php?query=%D4%AF

Encodings

MD5:

b0c4b59036d14e93e850861037372e87

SHA1:

0272043caee966cb9352a517da012995bcfde8b5

Base64:

1K8=