Unicode Finder

"ᤦ" U+1926(LIMBU VOWEL SIGN AU)

U+1926
Blocknamn
Limbu
Namn
LIMBU VOWEL SIGN AU

Programming

C
\u1926
JavaScript
\u1926
Java
\u1926
Json
\u1926
Python
\u1926
Perl
\x{1926}
PHP
\x{1926}
Ruby
\u{1926}
Rust
\u{1926}
Go
\u1926

Web

CSS
\001926
HtmlDecimal
ᤦ
HtmlHexadecimal
ᤦ
Url
%E1%A4%A6

Code

MD5
fac66f59321c88b954170bfdd7896746
Sha1
96114472702f1b0516e248dce8dcd9aed7cb582a
Base64
4aSm

Användningsexempel

Programming Languages

C:

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

JavaScript:

const char = '\u1926';
console.log(char);  // Output: ᤦ

Java:

char c = '\u1926';
System.out.println(c);  // Output: ᤦ

JSON:

{"text": "\u1926"}  // Value: ᤦ

Python:

char = '\u1926'
print(char)  # Output: ᤦ

Perl:

my $char = "\x{1926}";
print $char;  # Output: ᤦ

PHP:

$char = "\x{1926}";
echo $char;  // Output: ᤦ

Ruby:

char = "\u{1926}"
puts char  # Output: ᤦ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001926";  /* Display: ᤦ */
}

HTML Decimal:

<p>HTML decimal: &#6438;</p>  <!-- Display: ᤦ -->

HTML Hexadecimal:

<p>HTML hex: &#x1926;</p>  <!-- Display: ᤦ -->

URL Encoding:

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

Encodings

MD5:

fac66f59321c88b954170bfdd7896746

SHA1:

96114472702f1b0516e248dce8dcd9aed7cb582a

Base64:

4aSm