Unicode Finder

"ᐙ" U+1419(CANADIAN SYLLABICS WAA)

U+1419
区块名称
Unified Canadian Aboriginal Syllabics
名称
CANADIAN SYLLABICS WAA

Programming

C
\u1419
JavaScript
\u1419
Java
\u1419
Json
\u1419
Python
\u1419
Perl
\x{1419}
PHP
\x{1419}
Ruby
\u{1419}
Rust
\u{1419}
Go
\u1419

Web

CSS
\001419
HtmlDecimal
ᐙ
HtmlHexadecimal
ᐙ
Url
%E1%90%99

Code

MD5
e332d1a08ff8046aeb7dae1f7386fa77
Sha1
3c4825072ea5d89ab2ff09c0d637398c2b4da6f5
Base64
4ZCZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1419';
console.log(char);  // Output: ᐙ

Java:

char c = '\u1419';
System.out.println(c);  // Output: ᐙ

JSON:

{"text": "\u1419"}  // Value: ᐙ

Python:

char = '\u1419'
print(char)  # Output: ᐙ

Perl:

my $char = "\x{1419}";
print $char;  # Output: ᐙ

PHP:

$char = "\x{1419}";
echo $char;  // Output: ᐙ

Ruby:

char = "\u{1419}"
puts char  # Output: ᐙ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001419";  /* Display: ᐙ */
}

HTML Decimal:

<p>HTML decimal: &#5145;</p>  <!-- Display: ᐙ -->

HTML Hexadecimal:

<p>HTML hex: &#x1419;</p>  <!-- Display: ᐙ -->

URL Encoding:

// ᐙ URL encoding
https://unicodefinder.com/search.php?query=%E1%90%99

Encodings

MD5:

e332d1a08ff8046aeb7dae1f7386fa77

SHA1:

3c4825072ea5d89ab2ff09c0d637398c2b4da6f5

Base64:

4ZCZ