Unicode Finder

"წ" U+10EC(GEORGIAN LETTER CIL)

U+10EC
ब्लॉक का नाम
Georgian
नाम
GEORGIAN LETTER CIL

Programming

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

Web

CSS
\0010EC
HtmlDecimal
წ
HtmlHexadecimal
წ
Url
%E1%83%AC

Code

MD5
493bf877556edd13a8170f17df61c4a4
Sha1
16f5cfceee56b30e4676dbe72d4a5a67d0a98a59
Base64
4YOs

उपयोग के उदाहरण

Programming Languages

C:

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

JavaScript:

const char = '\u10EC';
console.log(char);  // Output: წ

Java:

char c = '\u10EC';
System.out.println(c);  // Output: წ

JSON:

{"text": "\u10EC"}  // Value: წ

Python:

char = '\u10EC'
print(char)  # Output: წ

Perl:

my $char = "\x{10EC}";
print $char;  # Output: წ

PHP:

$char = "\x{10EC}";
echo $char;  // Output: წ

Ruby:

char = "\u{10EC}"
puts char  # Output: წ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#4332;</p>  <!-- Display: წ -->

HTML Hexadecimal:

<p>HTML hex: &#x10EC;</p>  <!-- Display: წ -->

URL Encoding:

// წ URL encoding
https://unicodefinder.com/search.php?query=%E1%83%AC

Encodings

MD5:

493bf877556edd13a8170f17df61c4a4

SHA1:

16f5cfceee56b30e4676dbe72d4a5a67d0a98a59

Base64:

4YOs