Unicode Finder

"უ" U+10E3(GEORGIAN LETTER UN)

U+10E3
ब्लॉक का नाम
Georgian
नाम
GEORGIAN LETTER UN

Programming

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

Web

CSS
\0010E3
HtmlDecimal
უ
HtmlHexadecimal
უ
Url
%E1%83%A3

Code

MD5
8d4dca6a0b666bfa57090ef663c1d62c
Sha1
746d72eea2ef53abe8bf2c88a5e4f8869f5b09d7
Base64
4YOj

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

Programming Languages

C:

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

JavaScript:

const char = '\u10E3';
console.log(char);  // Output: უ

Java:

char c = '\u10E3';
System.out.println(c);  // Output: უ

JSON:

{"text": "\u10E3"}  // Value: უ

Python:

char = '\u10E3'
print(char)  # Output: უ

Perl:

my $char = "\x{10E3}";
print $char;  # Output: უ

PHP:

$char = "\x{10E3}";
echo $char;  // Output: უ

Ruby:

char = "\u{10E3}"
puts char  # Output: უ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#4323;</p>  <!-- Display: უ -->

HTML Hexadecimal:

<p>HTML hex: &#x10E3;</p>  <!-- Display: უ -->

URL Encoding:

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

Encodings

MD5:

8d4dca6a0b666bfa57090ef663c1d62c

SHA1:

746d72eea2ef53abe8bf2c88a5e4f8869f5b09d7

Base64:

4YOj