Unicode Finder

"Ꮟ" U+13CF(CHEROKEE LETTER SI)

U+13CF
نام بلوک
Cherokee
نام
CHEROKEE LETTER SI

Programming

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

Web

CSS
\0013CF
HtmlDecimal
Ꮟ
HtmlHexadecimal
Ꮟ
Url
%E1%8F%8F

Code

MD5
9e22dc4c2a8ded80bb38f134deded44d
Sha1
a0e061d12ce91a07b37b362f64497b03562de278
Base64
4Y+P

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

Programming Languages

C:

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

JavaScript:

const char = '\u13CF';
console.log(char);  // Output: Ꮟ

Java:

char c = '\u13CF';
System.out.println(c);  // Output: Ꮟ

JSON:

{"text": "\u13CF"}  // Value: Ꮟ

Python:

char = '\u13CF'
print(char)  # Output: Ꮟ

Perl:

my $char = "\x{13CF}";
print $char;  # Output: Ꮟ

PHP:

$char = "\x{13CF}";
echo $char;  // Output: Ꮟ

Ruby:

char = "\u{13CF}"
puts char  # Output: Ꮟ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#5071;</p>  <!-- Display: Ꮟ -->

HTML Hexadecimal:

<p>HTML hex: &#x13CF;</p>  <!-- Display: Ꮟ -->

URL Encoding:

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

Encodings

MD5:

9e22dc4c2a8ded80bb38f134deded44d

SHA1:

a0e061d12ce91a07b37b362f64497b03562de278

Base64:

4Y+P