Unicode Finder

"ۿ" U+06FF(ARABIC LETTER HEH WITH INVERTED V)

ۿ
U+06FF
نام بلوک
Arabic
نام
ARABIC LETTER HEH WITH INVERTED V

Programming

C
\u06FF
JavaScript
\u06FF
Java
\u06FF
Json
\u06FF
Python
\u06FF
Perl
\x{06FF}
PHP
\x{06FF}
Ruby
\u{06FF}
Rust
\u{6FF}
Go
\u06FF

Web

CSS
\0006FF
HtmlDecimal
ۿ
HtmlHexadecimal
ۿ
Url
%DB%BF

Code

MD5
fe6f5982dbd5ebedc8554878eeacaba1
Sha1
ceb569be881b1719939b1fcc4d0ed81516248efa
Base64
278=

مثال‌های استفاده

Programming Languages

C:

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

JavaScript:

const char = '\u06FF';
console.log(char);  // Output: ۿ

Java:

char c = '\u06FF';
System.out.println(c);  // Output: ۿ

JSON:

{"text": "\u06FF"}  // Value: ۿ

Python:

char = '\u06FF'
print(char)  # Output: ۿ

Perl:

my $char = "\x{06FF}";
print $char;  # Output: ۿ

PHP:

$char = "\x{06FF}";
echo $char;  // Output: ۿ

Ruby:

char = "\u{06FF}"
puts char  # Output: ۿ

Rust:

let c = '\u{6FF}';
println!("{}", c);  // Output: ۿ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0006FF";  /* Display: ۿ */
}

HTML Decimal:

<p>HTML decimal: &#1791;</p>  <!-- Display: ۿ -->

HTML Hexadecimal:

<p>HTML hex: &#x06FF;</p>  <!-- Display: ۿ -->

URL Encoding:

// ۿ URL encoding
https://unicodefinder.com/search.php?query=%DB%BF

Encodings

MD5:

fe6f5982dbd5ebedc8554878eeacaba1

SHA1:

ceb569be881b1719939b1fcc4d0ed81516248efa

Base64:

278=