Unicode Finder

"ᖀ" U+1580(CANADIAN SYLLABICS QII)

U+1580
Blocknamn
Unified Canadian Aboriginal Syllabics
Namn
CANADIAN SYLLABICS QII

Programming

C
\u1580
JavaScript
\u1580
Java
\u1580
Json
\u1580
Python
\u1580
Perl
\x{1580}
PHP
\x{1580}
Ruby
\u{1580}
Rust
\u{1580}
Go
\u1580

Web

CSS
\001580
HtmlDecimal
ᖀ
HtmlHexadecimal
ᖀ
Url
%E1%96%80

Code

MD5
d1e442dcc3e8016f3d43d63e6e2017c8
Sha1
346657cda9117e9db385af125bc57a1aac0482c3
Base64
4ZaA

Användningsexempel

Programming Languages

C:

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

JavaScript:

const char = '\u1580';
console.log(char);  // Output: ᖀ

Java:

char c = '\u1580';
System.out.println(c);  // Output: ᖀ

JSON:

{"text": "\u1580"}  // Value: ᖀ

Python:

char = '\u1580'
print(char)  # Output: ᖀ

Perl:

my $char = "\x{1580}";
print $char;  # Output: ᖀ

PHP:

$char = "\x{1580}";
echo $char;  // Output: ᖀ

Ruby:

char = "\u{1580}"
puts char  # Output: ᖀ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001580";  /* Display: ᖀ */
}

HTML Decimal:

<p>HTML decimal: &#5504;</p>  <!-- Display: ᖀ -->

HTML Hexadecimal:

<p>HTML hex: &#x1580;</p>  <!-- Display: ᖀ -->

URL Encoding:

// ᖀ URL encoding
https://unicodefinder.com/search.php?query=%E1%96%80

Encodings

MD5:

d1e442dcc3e8016f3d43d63e6e2017c8

SHA1:

346657cda9117e9db385af125bc57a1aac0482c3

Base64:

4ZaA