Unicode Finder

"֟" U+059F(HEBREW ACCENT QARNEY PARA)

֟
U+059F
Block Name
Hebrew
Name
HEBREW ACCENT QARNEY PARA

Programming

C
\u059F
JavaScript
\u059F
Java
\u059F
Json
\u059F
Python
\u059F
Perl
\x{059F}
PHP
\x{059F}
Ruby
\u{059F}
Rust
\u{59F}
Go
\u059F

Web

CSS
\00059F
HtmlDecimal
֟
HtmlHexadecimal
֟
Url
%D6%9F

Code

MD5
d3854c2762aa325fbbfab222e288e3cb
Sha1
d7475f62396d9c5985e8a563471634df3806a3c1
Base64
1p8=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u059F';
console.log(char);  // Output: ֟

Java:

char c = '\u059F';
System.out.println(c);  // Output: ֟

JSON:

{"text": "\u059F"}  // Value: ֟

Python:

char = '\u059F'
print(char)  # Output: ֟

Perl:

my $char = "\x{059F}";
print $char;  # Output: ֟

PHP:

$char = "\x{059F}";
echo $char;  // Output: ֟

Ruby:

char = "\u{059F}"
puts char  # Output: ֟

Rust:

let c = '\u{59F}';
println!("{}", c);  // Output: ֟

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00059F";  /* Display: ֟ */
}

HTML Decimal:

<p>HTML decimal: &#1439;</p>  <!-- Display: ֟ -->

HTML Hexadecimal:

<p>HTML hex: &#x059F;</p>  <!-- Display: ֟ -->

URL Encoding:

// ֟ URL encoding
https://unicodefinder.com/search.php?query=%D6%9F

Encodings

MD5:

d3854c2762aa325fbbfab222e288e3cb

SHA1:

d7475f62396d9c5985e8a563471634df3806a3c1

Base64:

1p8=