Unicode Finder

"؟" U+061F(ARABIC QUESTION MARK)

؟
U+061F
שם בלוק
Arabic
שם
ARABIC QUESTION MARK

Programming

C
\u061F
JavaScript
\u061F
Java
\u061F
Json
\u061F
Python
\u061F
Perl
\x{061F}
PHP
\x{061F}
Ruby
\u{061F}
Rust
\u{61F}
Go
\u061F

Web

CSS
\00061F
HtmlDecimal
؟
HtmlHexadecimal
؟
Url
%D8%9F

Code

MD5
494367d01a08fcf213fe3fb3dc977a36
Sha1
d14862b0be83a7ec31fe03ae01f9bba8deb20edf
Base64
2J8=

דוגמאות שימוש

Programming Languages

C:

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

JavaScript:

const char = '\u061F';
console.log(char);  // Output: ؟

Java:

char c = '\u061F';
System.out.println(c);  // Output: ؟

JSON:

{"text": "\u061F"}  // Value: ؟

Python:

char = '\u061F'
print(char)  # Output: ؟

Perl:

my $char = "\x{061F}";
print $char;  # Output: ؟

PHP:

$char = "\x{061F}";
echo $char;  // Output: ؟

Ruby:

char = "\u{061F}"
puts char  # Output: ؟

Rust:

let c = '\u{61F}';
println!("{}", c);  // Output: ؟

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00061F";  /* Display: ؟ */
}

HTML Decimal:

<p>HTML decimal: &#1567;</p>  <!-- Display: ؟ -->

HTML Hexadecimal:

<p>HTML hex: &#x061F;</p>  <!-- Display: ؟ -->

URL Encoding:

// ؟ URL encoding
https://unicodefinder.com/search.php?query=%D8%9F

Encodings

MD5:

494367d01a08fcf213fe3fb3dc977a36

SHA1:

d14862b0be83a7ec31fe03ae01f9bba8deb20edf

Base64:

2J8=