Unicode Finder

"ᙣ" U+1663(CANADIAN SYLLABICS CARRIER CHE)

U+1663
区块名称
Unified Canadian Aboriginal Syllabics
名称
CANADIAN SYLLABICS CARRIER CHE

Programming

C
\u1663
JavaScript
\u1663
Java
\u1663
Json
\u1663
Python
\u1663
Perl
\x{1663}
PHP
\x{1663}
Ruby
\u{1663}
Rust
\u{1663}
Go
\u1663

Web

CSS
\001663
HtmlDecimal
ᙣ
HtmlHexadecimal
ᙣ
Url
%E1%99%A3

Code

MD5
61fbf512ca1d47f90b6a2d57f626c6c1
Sha1
00382e697d2dba75de30ea76d5defda7413cd062
Base64
4Zmj

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1663';
console.log(char);  // Output: ᙣ

Java:

char c = '\u1663';
System.out.println(c);  // Output: ᙣ

JSON:

{"text": "\u1663"}  // Value: ᙣ

Python:

char = '\u1663'
print(char)  # Output: ᙣ

Perl:

my $char = "\x{1663}";
print $char;  # Output: ᙣ

PHP:

$char = "\x{1663}";
echo $char;  // Output: ᙣ

Ruby:

char = "\u{1663}"
puts char  # Output: ᙣ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001663";  /* Display: ᙣ */
}

HTML Decimal:

<p>HTML decimal: &#5731;</p>  <!-- Display: ᙣ -->

HTML Hexadecimal:

<p>HTML hex: &#x1663;</p>  <!-- Display: ᙣ -->

URL Encoding:

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

Encodings

MD5:

61fbf512ca1d47f90b6a2d57f626c6c1

SHA1:

00382e697d2dba75de30ea76d5defda7413cd062

Base64:

4Zmj