Unicode Finder

"֫" U+05AB(HEBREW ACCENT OLE)

֫
U+05AB
שם בלוק
Hebrew
שם
HEBREW ACCENT OLE

Programming

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

Web

CSS
\0005AB
HtmlDecimal
֫
HtmlHexadecimal
֫
Url
%D6%AB

Code

MD5
d9ca56b4fae5331ef3204bb05a041143
Sha1
b5d54b574a9116ea34027963313ab1f44611466e
Base64
1qs=

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

Programming Languages

C:

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

JavaScript:

const char = '\u05AB';
console.log(char);  // Output: ֫

Java:

char c = '\u05AB';
System.out.println(c);  // Output: ֫

JSON:

{"text": "\u05AB"}  // Value: ֫

Python:

char = '\u05AB'
print(char)  # Output: ֫

Perl:

my $char = "\x{05AB}";
print $char;  # Output: ֫

PHP:

$char = "\x{05AB}";
echo $char;  // Output: ֫

Ruby:

char = "\u{05AB}"
puts char  # Output: ֫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#1451;</p>  <!-- Display: ֫ -->

HTML Hexadecimal:

<p>HTML hex: &#x05AB;</p>  <!-- Display: ֫ -->

URL Encoding:

// ֫ URL encoding
https://unicodefinder.com/search.php?query=%D6%AB

Encodings

MD5:

d9ca56b4fae5331ef3204bb05a041143

SHA1:

b5d54b574a9116ea34027963313ab1f44611466e

Base64:

1qs=