Unicode Finder

"ם" U+05DD(HEBREW LETTER FINAL MEM)

ם
U+05DD
שם בלוק
Hebrew
שם
HEBREW LETTER FINAL MEM

Programming

C
\u05DD
JavaScript
\u05DD
Java
\u05DD
Json
\u05DD
Python
\u05DD
Perl
\x{05DD}
PHP
\x{05DD}
Ruby
\u{05DD}
Rust
\u{5DD}
Go
\u05DD

Web

CSS
\0005DD
HtmlDecimal
ם
HtmlHexadecimal
ם
Url
%D7%9D

Code

MD5
010c37a520f33ebf3b71286b5b686543
Sha1
c1583b473b00229358f4600a58692e607d582ccf
Base64
150=

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

Programming Languages

C:

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

JavaScript:

const char = '\u05DD';
console.log(char);  // Output: ם

Java:

char c = '\u05DD';
System.out.println(c);  // Output: ם

JSON:

{"text": "\u05DD"}  // Value: ם

Python:

char = '\u05DD'
print(char)  # Output: ם

Perl:

my $char = "\x{05DD}";
print $char;  # Output: ם

PHP:

$char = "\x{05DD}";
echo $char;  // Output: ם

Ruby:

char = "\u{05DD}"
puts char  # Output: ם

Rust:

let c = '\u{5DD}';
println!("{}", c);  // Output: ם

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0005DD";  /* Display: ם */
}

HTML Decimal:

<p>HTML decimal: &#1501;</p>  <!-- Display: ם -->

HTML Hexadecimal:

<p>HTML hex: &#x05DD;</p>  <!-- Display: ם -->

URL Encoding:

// ם URL encoding
https://unicodefinder.com/search.php?query=%D7%9D

Encodings

MD5:

010c37a520f33ebf3b71286b5b686543

SHA1:

c1583b473b00229358f4600a58692e607d582ccf

Base64:

150=