Unicode Finder

"Ꮀ" U+13B0(CHEROKEE LETTER HO)

U+13B0
ब्लॉक का नाम
Cherokee
नाम
CHEROKEE LETTER HO

Programming

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

Web

CSS
\0013B0
HtmlDecimal
Ꮀ
HtmlHexadecimal
Ꮀ
Url
%E1%8E%B0

Code

MD5
e84c289c653440aa7dcf2d14b745e164
Sha1
cc63ce39410397355588a9a67471bdac8410b830
Base64
4Y6w

उपयोग के उदाहरण

Programming Languages

C:

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

JavaScript:

const char = '\u13B0';
console.log(char);  // Output: Ꮀ

Java:

char c = '\u13B0';
System.out.println(c);  // Output: Ꮀ

JSON:

{"text": "\u13B0"}  // Value: Ꮀ

Python:

char = '\u13B0'
print(char)  # Output: Ꮀ

Perl:

my $char = "\x{13B0}";
print $char;  # Output: Ꮀ

PHP:

$char = "\x{13B0}";
echo $char;  // Output: Ꮀ

Ruby:

char = "\u{13B0}"
puts char  # Output: Ꮀ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#5040;</p>  <!-- Display: Ꮀ -->

HTML Hexadecimal:

<p>HTML hex: &#x13B0;</p>  <!-- Display: Ꮀ -->

URL Encoding:

// Ꮀ URL encoding
https://unicodefinder.com/search.php?query=%E1%8E%B0

Encodings

MD5:

e84c289c653440aa7dcf2d14b745e164

SHA1:

cc63ce39410397355588a9a67471bdac8410b830

Base64:

4Y6w