Unicode Finder

"ᙳ" U+1673(CANADIAN SYLLABICS NNGO)

U+1673
区块名称
Unified Canadian Aboriginal Syllabics
名称
CANADIAN SYLLABICS NNGO

Programming

C
\u1673
JavaScript
\u1673
Java
\u1673
Json
\u1673
Python
\u1673
Perl
\x{1673}
PHP
\x{1673}
Ruby
\u{1673}
Rust
\u{1673}
Go
\u1673

Web

CSS
\001673
HtmlDecimal
ᙳ
HtmlHexadecimal
ᙳ
Url
%E1%99%B3

Code

MD5
b008eee4d4c4799b42ff4d4a79b204b2
Sha1
f70feeb5c2b822e72df502f7a10c0be2e56845a8
Base64
4Zmz

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1673';
console.log(char);  // Output: ᙳ

Java:

char c = '\u1673';
System.out.println(c);  // Output: ᙳ

JSON:

{"text": "\u1673"}  // Value: ᙳ

Python:

char = '\u1673'
print(char)  # Output: ᙳ

Perl:

my $char = "\x{1673}";
print $char;  # Output: ᙳ

PHP:

$char = "\x{1673}";
echo $char;  // Output: ᙳ

Ruby:

char = "\u{1673}"
puts char  # Output: ᙳ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001673";  /* Display: ᙳ */
}

HTML Decimal:

<p>HTML decimal: &#5747;</p>  <!-- Display: ᙳ -->

HTML Hexadecimal:

<p>HTML hex: &#x1673;</p>  <!-- Display: ᙳ -->

URL Encoding:

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

Encodings

MD5:

b008eee4d4c4799b42ff4d4a79b204b2

SHA1:

f70feeb5c2b822e72df502f7a10c0be2e56845a8

Base64:

4Zmz