Unicode Finder

"־" U+05BE(HEBREW PUNCTUATION MAQAF)

־
U+05BE
Nume Bloc
Hebrew
Nume
HEBREW PUNCTUATION MAQAF

Programming

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

Web

CSS
\0005BE
HtmlDecimal
־
HtmlHexadecimal
־
Url
%D6%BE

Code

MD5
7b5d25a99f0bf05679ab371814e003b9
Sha1
a6f20fdc9ddc47379a09bbd5df4844b7f153521f
Base64
1r4=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u05BE';
console.log(char);  // Output: ־

Java:

char c = '\u05BE';
System.out.println(c);  // Output: ־

JSON:

{"text": "\u05BE"}  // Value: ־

Python:

char = '\u05BE'
print(char)  # Output: ־

Perl:

my $char = "\x{05BE}";
print $char;  # Output: ־

PHP:

$char = "\x{05BE}";
echo $char;  // Output: ־

Ruby:

char = "\u{05BE}"
puts char  # Output: ־

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#1470;</p>  <!-- Display: ־ -->

HTML Hexadecimal:

<p>HTML hex: &#x05BE;</p>  <!-- Display: ־ -->

URL Encoding:

// ־ URL encoding
https://unicodefinder.com/search.php?query=%D6%BE

Encodings

MD5:

7b5d25a99f0bf05679ab371814e003b9

SHA1:

a6f20fdc9ddc47379a09bbd5df4844b7f153521f

Base64:

1r4=