Unicode Finder

"ⴊ" U+2D0A(GEORGIAN SMALL LETTER LAS)

U+2D0A
Block Name
Georgian Supplement
Name
GEORGIAN SMALL LETTER LAS

Programming

C
\u2D0A
JavaScript
\u2D0A
Java
\u2D0A
Json
\u2D0A
Python
\u2D0A
Perl
\x{2D0A}
PHP
\x{2D0A}
Ruby
\u{2D0A}
Rust
\u{2D0A}
Go
\u2D0A

Web

CSS
\002D0A
HtmlDecimal
ⴊ
HtmlHexadecimal
ⴊ
Url
%E2%B4%8A

Code

MD5
c6f503e8cd58a9321eb6da3c48c95497
Sha1
a53354658095b2dc14ae978b58d61b91cd45dc26
Base64
4rSK

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2D0A';
console.log(char);  // Output: ⴊ

Java:

char c = '\u2D0A';
System.out.println(c);  // Output: ⴊ

JSON:

{"text": "\u2D0A"}  // Value: ⴊ

Python:

char = '\u2D0A'
print(char)  # Output: ⴊ

Perl:

my $char = "\x{2D0A}";
print $char;  # Output: ⴊ

PHP:

$char = "\x{2D0A}";
echo $char;  // Output: ⴊ

Ruby:

char = "\u{2D0A}"
puts char  # Output: ⴊ

Rust:

let c = '\u{2D0A}';
println!("{}", c);  // Output: ⴊ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002D0A";  /* Display: ⴊ */
}

HTML Decimal:

<p>HTML decimal: &#11530;</p>  <!-- Display: ⴊ -->

HTML Hexadecimal:

<p>HTML hex: &#x2D0A;</p>  <!-- Display: ⴊ -->

URL Encoding:

// ⴊ URL encoding
https://unicodefinder.com/search.php?query=%E2%B4%8A

Encodings

MD5:

c6f503e8cd58a9321eb6da3c48c95497

SHA1:

a53354658095b2dc14ae978b58d61b91cd45dc26

Base64:

4rSK