Unicode Finder

"ጁ" U+1301(ETHIOPIC SYLLABLE JU)

U+1301
ब्लॉक का नाम
Ethiopic
नाम
ETHIOPIC SYLLABLE JU

Programming

C
\u1301
JavaScript
\u1301
Java
\u1301
Json
\u1301
Python
\u1301
Perl
\x{1301}
PHP
\x{1301}
Ruby
\u{1301}
Rust
\u{1301}
Go
\u1301

Web

CSS
\001301
HtmlDecimal
ጁ
HtmlHexadecimal
ጁ
Url
%E1%8C%81

Code

MD5
dc6937ca38804b378132640f003cea4f
Sha1
1ab79e1a834230ac90081ace2a4f41b999c32815
Base64
4YyB

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

Programming Languages

C:

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

JavaScript:

const char = '\u1301';
console.log(char);  // Output: ጁ

Java:

char c = '\u1301';
System.out.println(c);  // Output: ጁ

JSON:

{"text": "\u1301"}  // Value: ጁ

Python:

char = '\u1301'
print(char)  # Output: ጁ

Perl:

my $char = "\x{1301}";
print $char;  # Output: ጁ

PHP:

$char = "\x{1301}";
echo $char;  // Output: ጁ

Ruby:

char = "\u{1301}"
puts char  # Output: ጁ

Rust:

let c = '\u{1301}';
println!("{}", c);  // Output: ጁ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001301";  /* Display: ጁ */
}

HTML Decimal:

<p>HTML decimal: &#4865;</p>  <!-- Display: ጁ -->

HTML Hexadecimal:

<p>HTML hex: &#x1301;</p>  <!-- Display: ጁ -->

URL Encoding:

// ጁ URL encoding
https://unicodefinder.com/search.php?query=%E1%8C%81

Encodings

MD5:

dc6937ca38804b378132640f003cea4f

SHA1:

1ab79e1a834230ac90081ace2a4f41b999c32815

Base64:

4YyB