Unicode Finder

"᥅" U+1945(LIMBU QUESTION MARK)

U+1945
שם בלוק
Limbu
שם
LIMBU QUESTION MARK

Programming

C
\u1945
JavaScript
\u1945
Java
\u1945
Json
\u1945
Python
\u1945
Perl
\x{1945}
PHP
\x{1945}
Ruby
\u{1945}
Rust
\u{1945}
Go
\u1945

Web

CSS
\001945
HtmlDecimal
᥅
HtmlHexadecimal
᥅
Url
%E1%A5%85

Code

MD5
632075a570d1b3f7384376971ab16545
Sha1
624c7bc7f7c39ee0652bd090521f71e96f3aaa87
Base64
4aWF

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

Programming Languages

C:

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

JavaScript:

const char = '\u1945';
console.log(char);  // Output: ᥅

Java:

char c = '\u1945';
System.out.println(c);  // Output: ᥅

JSON:

{"text": "\u1945"}  // Value: ᥅

Python:

char = '\u1945'
print(char)  # Output: ᥅

Perl:

my $char = "\x{1945}";
print $char;  # Output: ᥅

PHP:

$char = "\x{1945}";
echo $char;  // Output: ᥅

Ruby:

char = "\u{1945}"
puts char  # Output: ᥅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001945";  /* Display: ᥅ */
}

HTML Decimal:

<p>HTML decimal: &#6469;</p>  <!-- Display: ᥅ -->

HTML Hexadecimal:

<p>HTML hex: &#x1945;</p>  <!-- Display: ᥅ -->

URL Encoding:

// ᥅ URL encoding
https://unicodefinder.com/search.php?query=%E1%A5%85

Encodings

MD5:

632075a570d1b3f7384376971ab16545

SHA1:

624c7bc7f7c39ee0652bd090521f71e96f3aaa87

Base64:

4aWF