Unicode Finder

"ۉ" U+06C9(ARABIC LETTER KIRGHIZ YU)

ۉ
U+06C9
نام بلوک
Arabic
نام
ARABIC LETTER KIRGHIZ YU

Programming

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

Web

CSS
\0006C9
HtmlDecimal
ۉ
HtmlHexadecimal
ۉ
Url
%DB%89

Code

MD5
c518188cdb80148461d454433059b936
Sha1
18710b469bb8778f5f98f28fbe9b48f82c0fed34
Base64
24k=

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

Programming Languages

C:

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

JavaScript:

const char = '\u06C9';
console.log(char);  // Output: ۉ

Java:

char c = '\u06C9';
System.out.println(c);  // Output: ۉ

JSON:

{"text": "\u06C9"}  // Value: ۉ

Python:

char = '\u06C9'
print(char)  # Output: ۉ

Perl:

my $char = "\x{06C9}";
print $char;  # Output: ۉ

PHP:

$char = "\x{06C9}";
echo $char;  // Output: ۉ

Ruby:

char = "\u{06C9}"
puts char  # Output: ۉ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#1737;</p>  <!-- Display: ۉ -->

HTML Hexadecimal:

<p>HTML hex: &#x06C9;</p>  <!-- Display: ۉ -->

URL Encoding:

// ۉ URL encoding
https://unicodefinder.com/search.php?query=%DB%89

Encodings

MD5:

c518188cdb80148461d454433059b936

SHA1:

18710b469bb8778f5f98f28fbe9b48f82c0fed34

Base64:

24k=