Unicode Finder

"Ꮖ" U+13C6(CHEROKEE LETTER QUA)

U+13C6
ব্লক নাম
Cherokee
নাম
CHEROKEE LETTER QUA

Programming

C
\u13C6
JavaScript
\u13C6
Java
\u13C6
Json
\u13C6
Python
\u13C6
Perl
\x{13C6}
PHP
\x{13C6}
Ruby
\u{13C6}
Rust
\u{13C6}
Go
\u13C6

Web

CSS
\0013C6
HtmlDecimal
Ꮖ
HtmlHexadecimal
Ꮖ
Url
%E1%8F%86

Code

MD5
e4ed4e3a2e478ace4f3ad8d051d8e37a
Sha1
811e93a1e10ac3f6dd61a76fb7cc28629e73a974
Base64
4Y+G

ব্যবহারের উদাহরণ

Programming Languages

C:

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

JavaScript:

const char = '\u13C6';
console.log(char);  // Output: Ꮖ

Java:

char c = '\u13C6';
System.out.println(c);  // Output: Ꮖ

JSON:

{"text": "\u13C6"}  // Value: Ꮖ

Python:

char = '\u13C6'
print(char)  # Output: Ꮖ

Perl:

my $char = "\x{13C6}";
print $char;  # Output: Ꮖ

PHP:

$char = "\x{13C6}";
echo $char;  // Output: Ꮖ

Ruby:

char = "\u{13C6}"
puts char  # Output: Ꮖ

Rust:

let c = '\u{13C6}';
println!("{}", c);  // Output: Ꮖ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0013C6";  /* Display: Ꮖ */
}

HTML Decimal:

<p>HTML decimal: &#5062;</p>  <!-- Display: Ꮖ -->

HTML Hexadecimal:

<p>HTML hex: &#x13C6;</p>  <!-- Display: Ꮖ -->

URL Encoding:

// Ꮖ URL encoding
https://unicodefinder.com/search.php?query=%E1%8F%86

Encodings

MD5:

e4ed4e3a2e478ace4f3ad8d051d8e37a

SHA1:

811e93a1e10ac3f6dd61a76fb7cc28629e73a974

Base64:

4Y+G