Unicode Finder

"ׂ" U+05C2(HEBREW POINT SIN DOT)

ׂ
U+05C2
Název Bloku
Hebrew
Název
HEBREW POINT SIN DOT

Programming

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

Web

CSS
\0005C2
HtmlDecimal
ׂ
HtmlHexadecimal
ׂ
Url
%D7%82

Code

MD5
a4bf539a6b49ad192428d27073c510bb
Sha1
97ab722360e8e393c365654b158bd6eba4270309
Base64
14I=

Příklady Použití

Programming Languages

C:

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

JavaScript:

const char = '\u05C2';
console.log(char);  // Output: ׂ

Java:

char c = '\u05C2';
System.out.println(c);  // Output: ׂ

JSON:

{"text": "\u05C2"}  // Value: ׂ

Python:

char = '\u05C2'
print(char)  # Output: ׂ

Perl:

my $char = "\x{05C2}";
print $char;  # Output: ׂ

PHP:

$char = "\x{05C2}";
echo $char;  // Output: ׂ

Ruby:

char = "\u{05C2}"
puts char  # Output: ׂ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#1474;</p>  <!-- Display: ׂ -->

HTML Hexadecimal:

<p>HTML hex: &#x05C2;</p>  <!-- Display: ׂ -->

URL Encoding:

// ׂ URL encoding
https://unicodefinder.com/search.php?query=%D7%82

Encodings

MD5:

a4bf539a6b49ad192428d27073c510bb

SHA1:

97ab722360e8e393c365654b158bd6eba4270309

Base64:

14I=