Unicode Finder

"Ⴍ" U+10AD(GEORGIAN CAPITAL LETTER ON)

U+10AD
Όνομα Μπλοκ
Georgian
Όνομα
GEORGIAN CAPITAL LETTER ON

Programming

C
\u10AD
JavaScript
\u10AD
Java
\u10AD
Json
\u10AD
Python
\u10AD
Perl
\x{10AD}
PHP
\x{10AD}
Ruby
\u{10AD}
Rust
\u{10AD}
Go
\u10AD

Web

CSS
\0010AD
HtmlDecimal
Ⴍ
HtmlHexadecimal
Ⴍ
Url
%E1%82%AD

Code

MD5
07319ea25a3096cee2463af8478b2016
Sha1
dfecb64ed59c6ef8c7e273fdc497de093f7dff41
Base64
4YKt

Παραδείγματα Χρήσης

Programming Languages

C:

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

JavaScript:

const char = '\u10AD';
console.log(char);  // Output: Ⴍ

Java:

char c = '\u10AD';
System.out.println(c);  // Output: Ⴍ

JSON:

{"text": "\u10AD"}  // Value: Ⴍ

Python:

char = '\u10AD'
print(char)  # Output: Ⴍ

Perl:

my $char = "\x{10AD}";
print $char;  # Output: Ⴍ

PHP:

$char = "\x{10AD}";
echo $char;  // Output: Ⴍ

Ruby:

char = "\u{10AD}"
puts char  # Output: Ⴍ

Rust:

let c = '\u{10AD}';
println!("{}", c);  // Output: Ⴍ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0010AD";  /* Display: Ⴍ */
}

HTML Decimal:

<p>HTML decimal: &#4269;</p>  <!-- Display: Ⴍ -->

HTML Hexadecimal:

<p>HTML hex: &#x10AD;</p>  <!-- Display: Ⴍ -->

URL Encoding:

// Ⴍ URL encoding
https://unicodefinder.com/search.php?query=%E1%82%AD

Encodings

MD5:

07319ea25a3096cee2463af8478b2016

SHA1:

dfecb64ed59c6ef8c7e273fdc497de093f7dff41

Base64:

4YKt