Unicode Finder

"ᤙ" U+1919(LIMBU LETTER SHA)

U+1919
Bloknaam
Limbu
Naam
LIMBU LETTER SHA

Programming

C
\u1919
JavaScript
\u1919
Java
\u1919
Json
\u1919
Python
\u1919
Perl
\x{1919}
PHP
\x{1919}
Ruby
\u{1919}
Rust
\u{1919}
Go
\u1919

Web

CSS
\001919
HtmlDecimal
ᤙ
HtmlHexadecimal
ᤙ
Url
%E1%A4%99

Code

MD5
69300f0cde7eb4f30d794dc8a1630a0e
Sha1
ef292b97fc0778ff6eeae2fa4e586811a24a3f3c
Base64
4aSZ

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u1919';
console.log(char);  // Output: ᤙ

Java:

char c = '\u1919';
System.out.println(c);  // Output: ᤙ

JSON:

{"text": "\u1919"}  // Value: ᤙ

Python:

char = '\u1919'
print(char)  # Output: ᤙ

Perl:

my $char = "\x{1919}";
print $char;  # Output: ᤙ

PHP:

$char = "\x{1919}";
echo $char;  // Output: ᤙ

Ruby:

char = "\u{1919}"
puts char  # Output: ᤙ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001919";  /* Display: ᤙ */
}

HTML Decimal:

<p>HTML decimal: &#6425;</p>  <!-- Display: ᤙ -->

HTML Hexadecimal:

<p>HTML hex: &#x1919;</p>  <!-- Display: ᤙ -->

URL Encoding:

// ᤙ URL encoding
https://unicodefinder.com/search.php?query=%E1%A4%99

Encodings

MD5:

69300f0cde7eb4f30d794dc8a1630a0e

SHA1:

ef292b97fc0778ff6eeae2fa4e586811a24a3f3c

Base64:

4aSZ