Unicode Finder

"؇" U+0607(ARABIC-INDIC FOURTH ROOT)

؇
U+0607
שם בלוק
Arabic
שם
ARABIC-INDIC FOURTH ROOT

Programming

C
\u0607
JavaScript
\u0607
Java
\u0607
Json
\u0607
Python
\u0607
Perl
\x{0607}
PHP
\x{0607}
Ruby
\u{0607}
Rust
\u{607}
Go
\u0607

Web

CSS
\000607
HtmlDecimal
؇
HtmlHexadecimal
؇
Url
%D8%87

Code

MD5
8d7d4b63e90bede859f4dac7ea28936b
Sha1
a738806903d4e41768998d6490a864051acd7d6a
Base64
2Ic=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0607';
console.log(char);  // Output: ؇

Java:

char c = '\u0607';
System.out.println(c);  // Output: ؇

JSON:

{"text": "\u0607"}  // Value: ؇

Python:

char = '\u0607'
print(char)  # Output: ؇

Perl:

my $char = "\x{0607}";
print $char;  # Output: ؇

PHP:

$char = "\x{0607}";
echo $char;  // Output: ؇

Ruby:

char = "\u{0607}"
puts char  # Output: ؇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000607";  /* Display: ؇ */
}

HTML Decimal:

<p>HTML decimal: &#1543;</p>  <!-- Display: ؇ -->

HTML Hexadecimal:

<p>HTML hex: &#x0607;</p>  <!-- Display: ؇ -->

URL Encoding:

// ؇ URL encoding
https://unicodefinder.com/search.php?query=%D8%87

Encodings

MD5:

8d7d4b63e90bede859f4dac7ea28936b

SHA1:

a738806903d4e41768998d6490a864051acd7d6a

Base64:

2Ic=