Unicode Finder

"ᤠ" U+1920(LIMBU VOWEL SIGN A)

U+1920
Nazwa Bloku
Limbu
Nazwa
LIMBU VOWEL SIGN A

Programming

C
\u1920
JavaScript
\u1920
Java
\u1920
Json
\u1920
Python
\u1920
Perl
\x{1920}
PHP
\x{1920}
Ruby
\u{1920}
Rust
\u{1920}
Go
\u1920

Web

CSS
\001920
HtmlDecimal
ᤠ
HtmlHexadecimal
ᤠ
Url
%E1%A4%A0

Code

MD5
4fc54439fcd28737e4bd02e0519ba130
Sha1
c1d267d37a1c7eb0ae43d1da198b21f745192bed
Base64
4aSg

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1920';
console.log(char);  // Output: ᤠ

Java:

char c = '\u1920';
System.out.println(c);  // Output: ᤠ

JSON:

{"text": "\u1920"}  // Value: ᤠ

Python:

char = '\u1920'
print(char)  # Output: ᤠ

Perl:

my $char = "\x{1920}";
print $char;  # Output: ᤠ

PHP:

$char = "\x{1920}";
echo $char;  // Output: ᤠ

Ruby:

char = "\u{1920}"
puts char  # Output: ᤠ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001920";  /* Display: ᤠ */
}

HTML Decimal:

<p>HTML decimal: &#6432;</p>  <!-- Display: ᤠ -->

HTML Hexadecimal:

<p>HTML hex: &#x1920;</p>  <!-- Display: ᤠ -->

URL Encoding:

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

Encodings

MD5:

4fc54439fcd28737e4bd02e0519ba130

SHA1:

c1d267d37a1c7eb0ae43d1da198b21f745192bed

Base64:

4aSg