Unicode Finder

"ᘐ" U+1610(CANADIAN SYLLABICS CARRIER YE)

U+1610
ブロック名
Unified Canadian Aboriginal Syllabics
名前
CANADIAN SYLLABICS CARRIER YE

Programming

C
\u1610
JavaScript
\u1610
Java
\u1610
Json
\u1610
Python
\u1610
Perl
\x{1610}
PHP
\x{1610}
Ruby
\u{1610}
Rust
\u{1610}
Go
\u1610

Web

CSS
\001610
HtmlDecimal
ᘐ
HtmlHexadecimal
ᘐ
Url
%E1%98%90

Code

MD5
da9b334a55e8cc8307a7e4347a3c342f
Sha1
628d64e7720de8d809165a3ec39e1cd0256e5e51
Base64
4ZiQ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u1610';
console.log(char);  // Output: ᘐ

Java:

char c = '\u1610';
System.out.println(c);  // Output: ᘐ

JSON:

{"text": "\u1610"}  // Value: ᘐ

Python:

char = '\u1610'
print(char)  # Output: ᘐ

Perl:

my $char = "\x{1610}";
print $char;  # Output: ᘐ

PHP:

$char = "\x{1610}";
echo $char;  // Output: ᘐ

Ruby:

char = "\u{1610}"
puts char  # Output: ᘐ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001610";  /* Display: ᘐ */
}

HTML Decimal:

<p>HTML decimal: &#5648;</p>  <!-- Display: ᘐ -->

HTML Hexadecimal:

<p>HTML hex: &#x1610;</p>  <!-- Display: ᘐ -->

URL Encoding:

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

Encodings

MD5:

da9b334a55e8cc8307a7e4347a3c342f

SHA1:

628d64e7720de8d809165a3ec39e1cd0256e5e51

Base64:

4ZiQ