Unicode Finder

"ᤑ" U+1911(LIMBU LETTER PHA)

U+1911
Blokk Neve
Limbu
Név
LIMBU LETTER PHA

Programming

C
\u1911
JavaScript
\u1911
Java
\u1911
Json
\u1911
Python
\u1911
Perl
\x{1911}
PHP
\x{1911}
Ruby
\u{1911}
Rust
\u{1911}
Go
\u1911

Web

CSS
\001911
HtmlDecimal
ᤑ
HtmlHexadecimal
ᤑ
Url
%E1%A4%91

Code

MD5
bc4c679645a1eaec5411e2e3f9640868
Sha1
be2d548f12aee00aff2b973f218fa30d75b21e3e
Base64
4aSR

Használati Példák

Programming Languages

C:

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

JavaScript:

const char = '\u1911';
console.log(char);  // Output: ᤑ

Java:

char c = '\u1911';
System.out.println(c);  // Output: ᤑ

JSON:

{"text": "\u1911"}  // Value: ᤑ

Python:

char = '\u1911'
print(char)  # Output: ᤑ

Perl:

my $char = "\x{1911}";
print $char;  # Output: ᤑ

PHP:

$char = "\x{1911}";
echo $char;  // Output: ᤑ

Ruby:

char = "\u{1911}"
puts char  # Output: ᤑ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001911";  /* Display: ᤑ */
}

HTML Decimal:

<p>HTML decimal: &#6417;</p>  <!-- Display: ᤑ -->

HTML Hexadecimal:

<p>HTML hex: &#x1911;</p>  <!-- Display: ᤑ -->

URL Encoding:

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

Encodings

MD5:

bc4c679645a1eaec5411e2e3f9640868

SHA1:

be2d548f12aee00aff2b973f218fa30d75b21e3e

Base64:

4aSR