Unicode Finder

"֓" U+0593(HEBREW ACCENT SHALSHELET)

֓
U+0593
Nome do Bloco
Hebrew
Nome
HEBREW ACCENT SHALSHELET

Programming

C
\u0593
JavaScript
\u0593
Java
\u0593
Json
\u0593
Python
\u0593
Perl
\x{0593}
PHP
\x{0593}
Ruby
\u{0593}
Rust
\u{593}
Go
\u0593

Web

CSS
\000593
HtmlDecimal
֓
HtmlHexadecimal
֓
Url
%D6%93

Code

MD5
12ac06863f80f65f4daca9099c754d8e
Sha1
b24f10f6a2273cacdedee06db6fba41258edab63
Base64
1pM=

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u0593';
console.log(char);  // Output: ֓

Java:

char c = '\u0593';
System.out.println(c);  // Output: ֓

JSON:

{"text": "\u0593"}  // Value: ֓

Python:

char = '\u0593'
print(char)  # Output: ֓

Perl:

my $char = "\x{0593}";
print $char;  # Output: ֓

PHP:

$char = "\x{0593}";
echo $char;  // Output: ֓

Ruby:

char = "\u{0593}"
puts char  # Output: ֓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000593";  /* Display: ֓ */
}

HTML Decimal:

<p>HTML decimal: &#1427;</p>  <!-- Display: ֓ -->

HTML Hexadecimal:

<p>HTML hex: &#x0593;</p>  <!-- Display: ֓ -->

URL Encoding:

// ֓ URL encoding
https://unicodefinder.com/search.php?query=%D6%93

Encodings

MD5:

12ac06863f80f65f4daca9099c754d8e

SHA1:

b24f10f6a2273cacdedee06db6fba41258edab63

Base64:

1pM=