Unicode Finder

"᥊" U+194A(LIMBU DIGIT FOUR)

U+194A
ব্লক নাম
Limbu
নাম
LIMBU DIGIT FOUR

Programming

C
\u194A
JavaScript
\u194A
Java
\u194A
Json
\u194A
Python
\u194A
Perl
\x{194A}
PHP
\x{194A}
Ruby
\u{194A}
Rust
\u{194A}
Go
\u194A

Web

CSS
\00194A
HtmlDecimal
᥊
HtmlHexadecimal
᥊
Url
%E1%A5%8A

Code

MD5
6fc99334d6085f456a3d3c54053e1b1e
Sha1
5026cd8268549db6430f2410d2892e158e77794d
Base64
4aWK

ব্যবহারের উদাহরণ

Programming Languages

C:

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

JavaScript:

const char = '\u194A';
console.log(char);  // Output: ᥊

Java:

char c = '\u194A';
System.out.println(c);  // Output: ᥊

JSON:

{"text": "\u194A"}  // Value: ᥊

Python:

char = '\u194A'
print(char)  # Output: ᥊

Perl:

my $char = "\x{194A}";
print $char;  # Output: ᥊

PHP:

$char = "\x{194A}";
echo $char;  // Output: ᥊

Ruby:

char = "\u{194A}"
puts char  # Output: ᥊

Rust:

let c = '\u{194A}';
println!("{}", c);  // Output: ᥊

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00194A";  /* Display: ᥊ */
}

HTML Decimal:

<p>HTML decimal: &#6474;</p>  <!-- Display: ᥊ -->

HTML Hexadecimal:

<p>HTML hex: &#x194A;</p>  <!-- Display: ᥊ -->

URL Encoding:

// ᥊ URL encoding
https://unicodefinder.com/search.php?query=%E1%A5%8A

Encodings

MD5:

6fc99334d6085f456a3d3c54053e1b1e

SHA1:

5026cd8268549db6430f2410d2892e158e77794d

Base64:

4aWK