Unicode Finder

"ر" U+0631(ARABIC LETTER REH)

ر
U+0631
نام بلوک
Arabic
نام
ARABIC LETTER REH

Programming

C
\u0631
JavaScript
\u0631
Java
\u0631
Json
\u0631
Python
\u0631
Perl
\x{0631}
PHP
\x{0631}
Ruby
\u{0631}
Rust
\u{631}
Go
\u0631

Web

CSS
\000631
HtmlDecimal
ر
HtmlHexadecimal
ر
Url
%D8%B1

Code

MD5
65087b09d726a9af91c8c95b135c2a4b
Sha1
7a59c9d30973d6ca0152b37b408e6af3237b7c46
Base64
2LE=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0631';
console.log(char);  // Output: ر

Java:

char c = '\u0631';
System.out.println(c);  // Output: ر

JSON:

{"text": "\u0631"}  // Value: ر

Python:

char = '\u0631'
print(char)  # Output: ر

Perl:

my $char = "\x{0631}";
print $char;  # Output: ر

PHP:

$char = "\x{0631}";
echo $char;  // Output: ر

Ruby:

char = "\u{0631}"
puts char  # Output: ر

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000631";  /* Display: ر */
}

HTML Decimal:

<p>HTML decimal: &#1585;</p>  <!-- Display: ر -->

HTML Hexadecimal:

<p>HTML hex: &#x0631;</p>  <!-- Display: ر -->

URL Encoding:

// ر URL encoding
https://unicodefinder.com/search.php?query=%D8%B1

Encodings

MD5:

65087b09d726a9af91c8c95b135c2a4b

SHA1:

7a59c9d30973d6ca0152b37b408e6af3237b7c46

Base64:

2LE=