Unicode Finder

"֜" U+059C(HEBREW ACCENT GERESH)

֜
U+059C
Block Name
Hebrew
Name
HEBREW ACCENT GERESH

Programming

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

Web

CSS
\00059C
HtmlDecimal
֜
HtmlHexadecimal
֜
Url
%D6%9C

Code

MD5
2d2168933222dd2d44e3c2807b639124
Sha1
41c8beb4e1407e158dfdd2c21975a20525b5bb6b
Base64
1pw=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u059C';
console.log(char);  // Output: ֜

Java:

char c = '\u059C';
System.out.println(c);  // Output: ֜

JSON:

{"text": "\u059C"}  // Value: ֜

Python:

char = '\u059C'
print(char)  # Output: ֜

Perl:

my $char = "\x{059C}";
print $char;  # Output: ֜

PHP:

$char = "\x{059C}";
echo $char;  // Output: ֜

Ruby:

char = "\u{059C}"
puts char  # Output: ֜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#1436;</p>  <!-- Display: ֜ -->

HTML Hexadecimal:

<p>HTML hex: &#x059C;</p>  <!-- Display: ֜ -->

URL Encoding:

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

Encodings

MD5:

2d2168933222dd2d44e3c2807b639124

SHA1:

41c8beb4e1407e158dfdd2c21975a20525b5bb6b

Base64:

1pw=