Unicode Finder

"ײ" U+05F2(HEBREW LIGATURE YIDDISH DOUBLE YOD)

ײ
U+05F2
שם בלוק
Hebrew
שם
HEBREW LIGATURE YIDDISH DOUBLE YOD

Programming

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

Web

CSS
\0005F2
HtmlDecimal
ײ
HtmlHexadecimal
ײ
Url
%D7%B2

Code

MD5
fcebef8846ba0ee638af1c334b235036
Sha1
f0e2178714a873acb2f18d8301694359e3b53ab1
Base64
17I=

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

Programming Languages

C:

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

JavaScript:

const char = '\u05F2';
console.log(char);  // Output: ײ

Java:

char c = '\u05F2';
System.out.println(c);  // Output: ײ

JSON:

{"text": "\u05F2"}  // Value: ײ

Python:

char = '\u05F2'
print(char)  # Output: ײ

Perl:

my $char = "\x{05F2}";
print $char;  # Output: ײ

PHP:

$char = "\x{05F2}";
echo $char;  // Output: ײ

Ruby:

char = "\u{05F2}"
puts char  # Output: ײ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#1522;</p>  <!-- Display: ײ -->

HTML Hexadecimal:

<p>HTML hex: &#x05F2;</p>  <!-- Display: ײ -->

URL Encoding:

// ײ URL encoding
https://unicodefinder.com/search.php?query=%D7%B2

Encodings

MD5:

fcebef8846ba0ee638af1c334b235036

SHA1:

f0e2178714a873acb2f18d8301694359e3b53ab1

Base64:

17I=