Unicode Finder

"ᤨ" U+1928(LIMBU VOWEL SIGN O)

U+1928
Nume Bloc
Limbu
Nume
LIMBU VOWEL SIGN O

Programming

C
\u1928
JavaScript
\u1928
Java
\u1928
Json
\u1928
Python
\u1928
Perl
\x{1928}
PHP
\x{1928}
Ruby
\u{1928}
Rust
\u{1928}
Go
\u1928

Web

CSS
\001928
HtmlDecimal
ᤨ
HtmlHexadecimal
ᤨ
Url
%E1%A4%A8

Code

MD5
b9b470222482bae5760425dd3e5b846a
Sha1
3dd95648e34ccd1aad138d15a410bfd7c81041e5
Base64
4aSo

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u1928';
console.log(char);  // Output: ᤨ

Java:

char c = '\u1928';
System.out.println(c);  // Output: ᤨ

JSON:

{"text": "\u1928"}  // Value: ᤨ

Python:

char = '\u1928'
print(char)  # Output: ᤨ

Perl:

my $char = "\x{1928}";
print $char;  # Output: ᤨ

PHP:

$char = "\x{1928}";
echo $char;  // Output: ᤨ

Ruby:

char = "\u{1928}"
puts char  # Output: ᤨ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001928";  /* Display: ᤨ */
}

HTML Decimal:

<p>HTML decimal: &#6440;</p>  <!-- Display: ᤨ -->

HTML Hexadecimal:

<p>HTML hex: &#x1928;</p>  <!-- Display: ᤨ -->

URL Encoding:

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

Encodings

MD5:

b9b470222482bae5760425dd3e5b846a

SHA1:

3dd95648e34ccd1aad138d15a410bfd7c81041e5

Base64:

4aSo