Unicode Finder

"ᕨ" U+1568(CANADIAN SYLLABICS THWAA)

U+1568
Block Name
Unified Canadian Aboriginal Syllabics
Name
CANADIAN SYLLABICS THWAA

Programming

C
\u1568
JavaScript
\u1568
Java
\u1568
Json
\u1568
Python
\u1568
Perl
\x{1568}
PHP
\x{1568}
Ruby
\u{1568}
Rust
\u{1568}
Go
\u1568

Web

CSS
\001568
HtmlDecimal
ᕨ
HtmlHexadecimal
ᕨ
Url
%E1%95%A8

Code

MD5
94fd80682c2ce6daef690fd9b4c0c5f5
Sha1
3180a24c928e4be5357de2da48edd692ba1895ff
Base64
4ZWo

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u1568';
console.log(char);  // Output: ᕨ

Java:

char c = '\u1568';
System.out.println(c);  // Output: ᕨ

JSON:

{"text": "\u1568"}  // Value: ᕨ

Python:

char = '\u1568'
print(char)  # Output: ᕨ

Perl:

my $char = "\x{1568}";
print $char;  # Output: ᕨ

PHP:

$char = "\x{1568}";
echo $char;  // Output: ᕨ

Ruby:

char = "\u{1568}"
puts char  # Output: ᕨ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001568";  /* Display: ᕨ */
}

HTML Decimal:

<p>HTML decimal: &#5480;</p>  <!-- Display: ᕨ -->

HTML Hexadecimal:

<p>HTML hex: &#x1568;</p>  <!-- Display: ᕨ -->

URL Encoding:

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

Encodings

MD5:

94fd80682c2ce6daef690fd9b4c0c5f5

SHA1:

3180a24c928e4be5357de2da48edd692ba1895ff

Base64:

4ZWo