Unicode Finder

"ӊ" U+04CA(CYRILLIC SMALL LETTER EN WITH TAIL)

ӊ
U+04CA
Nama Blok
Cyrillic
Nama
CYRILLIC SMALL LETTER EN WITH TAIL

Programming

C
\u04CA
JavaScript
\u04CA
Java
\u04CA
Json
\u04CA
Python
\u04CA
Perl
\x{04CA}
PHP
\x{04CA}
Ruby
\u{04CA}
Rust
\u{4CA}
Go
\u04CA

Web

CSS
\0004CA
HtmlDecimal
ӊ
HtmlHexadecimal
ӊ
Url
%D3%8A

Code

MD5
4cf7c3f0f0865bee3923d631927464b5
Sha1
963ad5b79a8c0eb870ac58c71de425846067787b
Base64
04o=

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u04CA';
console.log(char);  // Output: ӊ

Java:

char c = '\u04CA';
System.out.println(c);  // Output: ӊ

JSON:

{"text": "\u04CA"}  // Value: ӊ

Python:

char = '\u04CA'
print(char)  # Output: ӊ

Perl:

my $char = "\x{04CA}";
print $char;  # Output: ӊ

PHP:

$char = "\x{04CA}";
echo $char;  // Output: ӊ

Ruby:

char = "\u{04CA}"
puts char  # Output: ӊ

Rust:

let c = '\u{4CA}';
println!("{}", c);  // Output: ӊ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0004CA";  /* Display: ӊ */
}

HTML Decimal:

<p>HTML decimal: &#1226;</p>  <!-- Display: ӊ -->

HTML Hexadecimal:

<p>HTML hex: &#x04CA;</p>  <!-- Display: ӊ -->

URL Encoding:

// ӊ URL encoding
https://unicodefinder.com/search.php?query=%D3%8A

Encodings

MD5:

4cf7c3f0f0865bee3923d631927464b5

SHA1:

963ad5b79a8c0eb870ac58c71de425846067787b

Base64:

04o=