Unicode Finder

"ᑙ" U+1459(CANADIAN SYLLABICS TWI)

U+1459
区块名称
Unified Canadian Aboriginal Syllabics
名称
CANADIAN SYLLABICS TWI

Programming

C
\u1459
JavaScript
\u1459
Java
\u1459
Json
\u1459
Python
\u1459
Perl
\x{1459}
PHP
\x{1459}
Ruby
\u{1459}
Rust
\u{1459}
Go
\u1459

Web

CSS
\001459
HtmlDecimal
ᑙ
HtmlHexadecimal
ᑙ
Url
%E1%91%99

Code

MD5
151746f1678e8976de4e0bcb130bddd1
Sha1
3d81161e0bd8020c440c02e97b3e6e7ba0e78470
Base64
4ZGZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1459';
console.log(char);  // Output: ᑙ

Java:

char c = '\u1459';
System.out.println(c);  // Output: ᑙ

JSON:

{"text": "\u1459"}  // Value: ᑙ

Python:

char = '\u1459'
print(char)  # Output: ᑙ

Perl:

my $char = "\x{1459}";
print $char;  # Output: ᑙ

PHP:

$char = "\x{1459}";
echo $char;  // Output: ᑙ

Ruby:

char = "\u{1459}"
puts char  # Output: ᑙ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001459";  /* Display: ᑙ */
}

HTML Decimal:

<p>HTML decimal: &#5209;</p>  <!-- Display: ᑙ -->

HTML Hexadecimal:

<p>HTML hex: &#x1459;</p>  <!-- Display: ᑙ -->

URL Encoding:

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

Encodings

MD5:

151746f1678e8976de4e0bcb130bddd1

SHA1:

3d81161e0bd8020c440c02e97b3e6e7ba0e78470

Base64:

4ZGZ