Unicode Finder

"ᕳ" U+1573(CANADIAN SYLLABICS TYA)

U+1573
Bloknaam
Unified Canadian Aboriginal Syllabics
Naam
CANADIAN SYLLABICS TYA

Programming

C
\u1573
JavaScript
\u1573
Java
\u1573
Json
\u1573
Python
\u1573
Perl
\x{1573}
PHP
\x{1573}
Ruby
\u{1573}
Rust
\u{1573}
Go
\u1573

Web

CSS
\001573
HtmlDecimal
ᕳ
HtmlHexadecimal
ᕳ
Url
%E1%95%B3

Code

MD5
84196d2c70d8cc047390195ba1fa7f3e
Sha1
17025b92c88cfc2ff86e979f6f3e96a6c5261d15
Base64
4ZWz

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u1573';
console.log(char);  // Output: ᕳ

Java:

char c = '\u1573';
System.out.println(c);  // Output: ᕳ

JSON:

{"text": "\u1573"}  // Value: ᕳ

Python:

char = '\u1573'
print(char)  # Output: ᕳ

Perl:

my $char = "\x{1573}";
print $char;  # Output: ᕳ

PHP:

$char = "\x{1573}";
echo $char;  // Output: ᕳ

Ruby:

char = "\u{1573}"
puts char  # Output: ᕳ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001573";  /* Display: ᕳ */
}

HTML Decimal:

<p>HTML decimal: &#5491;</p>  <!-- Display: ᕳ -->

HTML Hexadecimal:

<p>HTML hex: &#x1573;</p>  <!-- Display: ᕳ -->

URL Encoding:

// ᕳ URL encoding
https://unicodefinder.com/search.php?query=%E1%95%B3

Encodings

MD5:

84196d2c70d8cc047390195ba1fa7f3e

SHA1:

17025b92c88cfc2ff86e979f6f3e96a6c5261d15

Base64:

4ZWz