Unicode Finder

"ᤢ" U+1922(LIMBU VOWEL SIGN U)

U+1922
Nama Blok
Limbu
Nama
LIMBU VOWEL SIGN U

Programming

C
\u1922
JavaScript
\u1922
Java
\u1922
Json
\u1922
Python
\u1922
Perl
\x{1922}
PHP
\x{1922}
Ruby
\u{1922}
Rust
\u{1922}
Go
\u1922

Web

CSS
\001922
HtmlDecimal
ᤢ
HtmlHexadecimal
ᤢ
Url
%E1%A4%A2

Code

MD5
50adb4be3e7abaef7f53737de7e1e561
Sha1
53e3a181a883faba7383f1037a2794cb5a1746dc
Base64
4aSi

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1922';
console.log(char);  // Output: ᤢ

Java:

char c = '\u1922';
System.out.println(c);  // Output: ᤢ

JSON:

{"text": "\u1922"}  // Value: ᤢ

Python:

char = '\u1922'
print(char)  # Output: ᤢ

Perl:

my $char = "\x{1922}";
print $char;  # Output: ᤢ

PHP:

$char = "\x{1922}";
echo $char;  // Output: ᤢ

Ruby:

char = "\u{1922}"
puts char  # Output: ᤢ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001922";  /* Display: ᤢ */
}

HTML Decimal:

<p>HTML decimal: &#6434;</p>  <!-- Display: ᤢ -->

HTML Hexadecimal:

<p>HTML hex: &#x1922;</p>  <!-- Display: ᤢ -->

URL Encoding:

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

Encodings

MD5:

50adb4be3e7abaef7f53737de7e1e561

SHA1:

53e3a181a883faba7383f1037a2794cb5a1746dc

Base64:

4aSi