Unicode Finder

"ᙰ" U+1670(CANADIAN SYLLABICS NGAI)

U+1670
블록 이름
Unified Canadian Aboriginal Syllabics
이름
CANADIAN SYLLABICS NGAI

Programming

C
\u1670
JavaScript
\u1670
Java
\u1670
Json
\u1670
Python
\u1670
Perl
\x{1670}
PHP
\x{1670}
Ruby
\u{1670}
Rust
\u{1670}
Go
\u1670

Web

CSS
\001670
HtmlDecimal
ᙰ
HtmlHexadecimal
ᙰ
Url
%E1%99%B0

Code

MD5
32a7ff9d60b12b1674014b0ab40e743b
Sha1
db99332d3b38cc66a5cad380201820c42c9a4138
Base64
4Zmw

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\u1670';
console.log(char);  // Output: ᙰ

Java:

char c = '\u1670';
System.out.println(c);  // Output: ᙰ

JSON:

{"text": "\u1670"}  // Value: ᙰ

Python:

char = '\u1670'
print(char)  # Output: ᙰ

Perl:

my $char = "\x{1670}";
print $char;  # Output: ᙰ

PHP:

$char = "\x{1670}";
echo $char;  // Output: ᙰ

Ruby:

char = "\u{1670}"
puts char  # Output: ᙰ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001670";  /* Display: ᙰ */
}

HTML Decimal:

<p>HTML decimal: &#5744;</p>  <!-- Display: ᙰ -->

HTML Hexadecimal:

<p>HTML hex: &#x1670;</p>  <!-- Display: ᙰ -->

URL Encoding:

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

Encodings

MD5:

32a7ff9d60b12b1674014b0ab40e743b

SHA1:

db99332d3b38cc66a5cad380201820c42c9a4138

Base64:

4Zmw