Unicode Finder

"ᰮ" U+1C2E(LEPCHA CONSONANT SIGN M)

U+1C2E
שם בלוק
Lepcha
שם
LEPCHA CONSONANT SIGN M

Programming

C
\u1C2E
JavaScript
\u1C2E
Java
\u1C2E
Json
\u1C2E
Python
\u1C2E
Perl
\x{1C2E}
PHP
\x{1C2E}
Ruby
\u{1C2E}
Rust
\u{1C2E}
Go
\u1C2E

Web

CSS
\001C2E
HtmlDecimal
ᰮ
HtmlHexadecimal
ᰮ
Url
%E1%B0%AE

Code

MD5
e57d50bab47201356aea2083fed9c76a
Sha1
24063341eb931eb02d596c4c96df738859fc6b22
Base64
4bCu

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

Programming Languages

C:

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

JavaScript:

const char = '\u1C2E';
console.log(char);  // Output: ᰮ

Java:

char c = '\u1C2E';
System.out.println(c);  // Output: ᰮ

JSON:

{"text": "\u1C2E"}  // Value: ᰮ

Python:

char = '\u1C2E'
print(char)  # Output: ᰮ

Perl:

my $char = "\x{1C2E}";
print $char;  # Output: ᰮ

PHP:

$char = "\x{1C2E}";
echo $char;  // Output: ᰮ

Ruby:

char = "\u{1C2E}"
puts char  # Output: ᰮ

Rust:

let c = '\u{1C2E}';
println!("{}", c);  // Output: ᰮ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001C2E";  /* Display: ᰮ */
}

HTML Decimal:

<p>HTML decimal: &#7214;</p>  <!-- Display: ᰮ -->

HTML Hexadecimal:

<p>HTML hex: &#x1C2E;</p>  <!-- Display: ᰮ -->

URL Encoding:

// ᰮ URL encoding
https://unicodefinder.com/search.php?query=%E1%B0%AE

Encodings

MD5:

e57d50bab47201356aea2083fed9c76a

SHA1:

24063341eb931eb02d596c4c96df738859fc6b22

Base64:

4bCu