Unicode Finder

"ᘧ" U+1627(CANADIAN SYLLABICS CARRIER LA)

U+1627
ブロック名
Unified Canadian Aboriginal Syllabics
名前
CANADIAN SYLLABICS CARRIER LA

Programming

C
\u1627
JavaScript
\u1627
Java
\u1627
Json
\u1627
Python
\u1627
Perl
\x{1627}
PHP
\x{1627}
Ruby
\u{1627}
Rust
\u{1627}
Go
\u1627

Web

CSS
\001627
HtmlDecimal
ᘧ
HtmlHexadecimal
ᘧ
Url
%E1%98%A7

Code

MD5
4d804d8403e314663664f33df4e362b6
Sha1
8de9dc6cb0b481f3b4b5b3f3ce704463b0ebebad
Base64
4Zin

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u1627';
console.log(char);  // Output: ᘧ

Java:

char c = '\u1627';
System.out.println(c);  // Output: ᘧ

JSON:

{"text": "\u1627"}  // Value: ᘧ

Python:

char = '\u1627'
print(char)  # Output: ᘧ

Perl:

my $char = "\x{1627}";
print $char;  # Output: ᘧ

PHP:

$char = "\x{1627}";
echo $char;  // Output: ᘧ

Ruby:

char = "\u{1627}"
puts char  # Output: ᘧ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001627";  /* Display: ᘧ */
}

HTML Decimal:

<p>HTML decimal: &#5671;</p>  <!-- Display: ᘧ -->

HTML Hexadecimal:

<p>HTML hex: &#x1627;</p>  <!-- Display: ᘧ -->

URL Encoding:

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

Encodings

MD5:

4d804d8403e314663664f33df4e362b6

SHA1:

8de9dc6cb0b481f3b4b5b3f3ce704463b0ebebad

Base64:

4Zin