Unicode Finder

"љ" U+0459(CYRILLIC SMALL LETTER LJE)

љ
U+0459
Назва Блоку
Cyrillic
Назва
CYRILLIC SMALL LETTER LJE

Programming

C
\u0459
JavaScript
\u0459
Java
\u0459
Json
\u0459
Python
\u0459
Perl
\x{0459}
PHP
\x{0459}
Ruby
\u{0459}
Rust
\u{459}
Go
\u0459

Web

CSS
\000459
HtmlDecimal
љ
HtmlHexadecimal
љ
Url
%D1%99

Code

MD5
a3b4b275e9aebe019f3d28560d0d5327
Sha1
274c6ac290b10a91a251b52409e2da92b04eee8e
Base64
0Zk=

Приклади Використання

Programming Languages

C:

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

JavaScript:

const char = '\u0459';
console.log(char);  // Output: љ

Java:

char c = '\u0459';
System.out.println(c);  // Output: љ

JSON:

{"text": "\u0459"}  // Value: љ

Python:

char = '\u0459'
print(char)  # Output: љ

Perl:

my $char = "\x{0459}";
print $char;  # Output: љ

PHP:

$char = "\x{0459}";
echo $char;  // Output: љ

Ruby:

char = "\u{0459}"
puts char  # Output: љ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000459";  /* Display: љ */
}

HTML Decimal:

<p>HTML decimal: &#1113;</p>  <!-- Display: љ -->

HTML Hexadecimal:

<p>HTML hex: &#x0459;</p>  <!-- Display: љ -->

URL Encoding:

// љ URL encoding
https://unicodefinder.com/search.php?query=%D1%99

Encodings

MD5:

a3b4b275e9aebe019f3d28560d0d5327

SHA1:

274c6ac290b10a91a251b52409e2da92b04eee8e

Base64:

0Zk=