Unicode Finder

"Ⴣ" U+10C3(GEORGIAN CAPITAL LETTER WE)

U+10C3
ब्लॉक का नाम
Georgian
नाम
GEORGIAN CAPITAL LETTER WE

Programming

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

Web

CSS
\0010C3
HtmlDecimal
Ⴣ
HtmlHexadecimal
Ⴣ
Url
%E1%83%83

Code

MD5
9efc8a75ce269f595672c25339d76232
Sha1
0bf292ea51110375cd7e96eef260eedc989f3112
Base64
4YOD

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

Programming Languages

C:

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

JavaScript:

const char = '\u10C3';
console.log(char);  // Output: Ⴣ

Java:

char c = '\u10C3';
System.out.println(c);  // Output: Ⴣ

JSON:

{"text": "\u10C3"}  // Value: Ⴣ

Python:

char = '\u10C3'
print(char)  # Output: Ⴣ

Perl:

my $char = "\x{10C3}";
print $char;  # Output: Ⴣ

PHP:

$char = "\x{10C3}";
echo $char;  // Output: Ⴣ

Ruby:

char = "\u{10C3}"
puts char  # Output: Ⴣ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#4291;</p>  <!-- Display: Ⴣ -->

HTML Hexadecimal:

<p>HTML hex: &#x10C3;</p>  <!-- Display: Ⴣ -->

URL Encoding:

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

Encodings

MD5:

9efc8a75ce269f595672c25339d76232

SHA1:

0bf292ea51110375cd7e96eef260eedc989f3112

Base64:

4YOD