Unicode Finder

"Ԉ" U+0508(CYRILLIC CAPITAL LETTER KOMI LJE)

Ԉ
U+0508
Nama Blok
Cyrillic Supplement
Nama
CYRILLIC CAPITAL LETTER KOMI LJE

Programming

C
\u0508
JavaScript
\u0508
Java
\u0508
Json
\u0508
Python
\u0508
Perl
\x{0508}
PHP
\x{0508}
Ruby
\u{0508}
Rust
\u{508}
Go
\u0508

Web

CSS
\000508
HtmlDecimal
Ԉ
HtmlHexadecimal
Ԉ
Url
%D4%88

Code

MD5
8afe0e5c703d29aa68f11de2aaee8652
Sha1
9155d045a91cf53cc9dc73400467a033429e1dfb
Base64
1Ig=

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u0508';
console.log(char);  // Output: Ԉ

Java:

char c = '\u0508';
System.out.println(c);  // Output: Ԉ

JSON:

{"text": "\u0508"}  // Value: Ԉ

Python:

char = '\u0508'
print(char)  # Output: Ԉ

Perl:

my $char = "\x{0508}";
print $char;  # Output: Ԉ

PHP:

$char = "\x{0508}";
echo $char;  // Output: Ԉ

Ruby:

char = "\u{0508}"
puts char  # Output: Ԉ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000508";  /* Display: Ԉ */
}

HTML Decimal:

<p>HTML decimal: &#1288;</p>  <!-- Display: Ԉ -->

HTML Hexadecimal:

<p>HTML hex: &#x0508;</p>  <!-- Display: Ԉ -->

URL Encoding:

// Ԉ URL encoding
https://unicodefinder.com/search.php?query=%D4%88

Encodings

MD5:

8afe0e5c703d29aa68f11de2aaee8652

SHA1:

9155d045a91cf53cc9dc73400467a033429e1dfb

Base64:

1Ig=