Unicode Finder

"თ" U+10D7(GEORGIAN LETTER TAN)

U+10D7
ब्लॉक का नाम
Georgian
नाम
GEORGIAN LETTER TAN

Programming

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

Web

CSS
\0010D7
HtmlDecimal
თ
HtmlHexadecimal
თ
Url
%E1%83%97

Code

MD5
d8e8554a29d3cdc821af9eae95759659
Sha1
f711831b2ff6bf942526be3936d11b22fcdb4e72
Base64
4YOX

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

Programming Languages

C:

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

JavaScript:

const char = '\u10D7';
console.log(char);  // Output: თ

Java:

char c = '\u10D7';
System.out.println(c);  // Output: თ

JSON:

{"text": "\u10D7"}  // Value: თ

Python:

char = '\u10D7'
print(char)  # Output: თ

Perl:

my $char = "\x{10D7}";
print $char;  # Output: თ

PHP:

$char = "\x{10D7}";
echo $char;  // Output: თ

Ruby:

char = "\u{10D7}"
puts char  # Output: თ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#4311;</p>  <!-- Display: თ -->

HTML Hexadecimal:

<p>HTML hex: &#x10D7;</p>  <!-- Display: თ -->

URL Encoding:

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

Encodings

MD5:

d8e8554a29d3cdc821af9eae95759659

SHA1:

f711831b2ff6bf942526be3936d11b22fcdb4e72

Base64:

4YOX