Unicode Finder

"ᤄ" U+1904(LIMBU LETTER GHA)

U+1904
שם בלוק
Limbu
שם
LIMBU LETTER GHA

Programming

C
\u1904
JavaScript
\u1904
Java
\u1904
Json
\u1904
Python
\u1904
Perl
\x{1904}
PHP
\x{1904}
Ruby
\u{1904}
Rust
\u{1904}
Go
\u1904

Web

CSS
\001904
HtmlDecimal
ᤄ
HtmlHexadecimal
ᤄ
Url
%E1%A4%84

Code

MD5
aac91074517d9400d775963627eb07cc
Sha1
bc2364f6ee162fd32c4b874f3fcd75e3bd2fcc52
Base64
4aSE

דוגמאות שימוש

Programming Languages

C:

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

JavaScript:

const char = '\u1904';
console.log(char);  // Output: ᤄ

Java:

char c = '\u1904';
System.out.println(c);  // Output: ᤄ

JSON:

{"text": "\u1904"}  // Value: ᤄ

Python:

char = '\u1904'
print(char)  # Output: ᤄ

Perl:

my $char = "\x{1904}";
print $char;  # Output: ᤄ

PHP:

$char = "\x{1904}";
echo $char;  // Output: ᤄ

Ruby:

char = "\u{1904}"
puts char  # Output: ᤄ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001904";  /* Display: ᤄ */
}

HTML Decimal:

<p>HTML decimal: &#6404;</p>  <!-- Display: ᤄ -->

HTML Hexadecimal:

<p>HTML hex: &#x1904;</p>  <!-- Display: ᤄ -->

URL Encoding:

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

Encodings

MD5:

aac91074517d9400d775963627eb07cc

SHA1:

bc2364f6ee162fd32c4b874f3fcd75e3bd2fcc52

Base64:

4aSE