Unicode Finder

"֖" U+0596(HEBREW ACCENT TIPEHA)

֖
U+0596
Block Name
Hebrew
Name
HEBREW ACCENT TIPEHA

Programming

C
\u0596
JavaScript
\u0596
Java
\u0596
Json
\u0596
Python
\u0596
Perl
\x{0596}
PHP
\x{0596}
Ruby
\u{0596}
Rust
\u{596}
Go
\u0596

Web

CSS
\000596
HtmlDecimal
֖
HtmlHexadecimal
֖
Url
%D6%96

Code

MD5
895ed7c4387392cfcea481cf292e7bb5
Sha1
fdf8db83806cd701d5578583543592b79ed7a77e
Base64
1pY=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0596';
console.log(char);  // Output: ֖

Java:

char c = '\u0596';
System.out.println(c);  // Output: ֖

JSON:

{"text": "\u0596"}  // Value: ֖

Python:

char = '\u0596'
print(char)  # Output: ֖

Perl:

my $char = "\x{0596}";
print $char;  # Output: ֖

PHP:

$char = "\x{0596}";
echo $char;  // Output: ֖

Ruby:

char = "\u{0596}"
puts char  # Output: ֖

Rust:

let c = '\u{596}';
println!("{}", c);  // Output: ֖

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000596";  /* Display: ֖ */
}

HTML Decimal:

<p>HTML decimal: &#1430;</p>  <!-- Display: ֖ -->

HTML Hexadecimal:

<p>HTML hex: &#x0596;</p>  <!-- Display: ֖ -->

URL Encoding:

// ֖ URL encoding
https://unicodefinder.com/search.php?query=%D6%96

Encodings

MD5:

895ed7c4387392cfcea481cf292e7bb5

SHA1:

fdf8db83806cd701d5578583543592b79ed7a77e

Base64:

1pY=