Unicode Finder

"ע" U+05E2(HEBREW LETTER AYIN)

ע
U+05E2
שם בלוק
Hebrew
שם
HEBREW LETTER AYIN

Programming

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

Web

CSS
\0005E2
HtmlDecimal
ע
HtmlHexadecimal
ע
Url
%D7%A2

Code

MD5
f1afb4c8d01a1a3453d5858318eae036
Sha1
29053d742cca1cf79efe7faa8111c104022e9118
Base64
16I=

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

Programming Languages

C:

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

JavaScript:

const char = '\u05E2';
console.log(char);  // Output: ע

Java:

char c = '\u05E2';
System.out.println(c);  // Output: ע

JSON:

{"text": "\u05E2"}  // Value: ע

Python:

char = '\u05E2'
print(char)  # Output: ע

Perl:

my $char = "\x{05E2}";
print $char;  # Output: ע

PHP:

$char = "\x{05E2}";
echo $char;  // Output: ע

Ruby:

char = "\u{05E2}"
puts char  # Output: ע

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#1506;</p>  <!-- Display: ע -->

HTML Hexadecimal:

<p>HTML hex: &#x05E2;</p>  <!-- Display: ע -->

URL Encoding:

// ע URL encoding
https://unicodefinder.com/search.php?query=%D7%A2

Encodings

MD5:

f1afb4c8d01a1a3453d5858318eae036

SHA1:

29053d742cca1cf79efe7faa8111c104022e9118

Base64:

16I=