Unicode Finder

"ᑉ" U+1449(CANADIAN SYLLABICS P)

U+1449
ブロック名
Unified Canadian Aboriginal Syllabics
名前
CANADIAN SYLLABICS P

Programming

C
\u1449
JavaScript
\u1449
Java
\u1449
Json
\u1449
Python
\u1449
Perl
\x{1449}
PHP
\x{1449}
Ruby
\u{1449}
Rust
\u{1449}
Go
\u1449

Web

CSS
\001449
HtmlDecimal
ᑉ
HtmlHexadecimal
ᑉ
Url
%E1%91%89

Code

MD5
b6e60ecdedb185c52282f0e6c6a081bb
Sha1
bcecbf28c773ff568d593a870c5478854a15eea1
Base64
4ZGJ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u1449';
console.log(char);  // Output: ᑉ

Java:

char c = '\u1449';
System.out.println(c);  // Output: ᑉ

JSON:

{"text": "\u1449"}  // Value: ᑉ

Python:

char = '\u1449'
print(char)  # Output: ᑉ

Perl:

my $char = "\x{1449}";
print $char;  # Output: ᑉ

PHP:

$char = "\x{1449}";
echo $char;  // Output: ᑉ

Ruby:

char = "\u{1449}"
puts char  # Output: ᑉ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001449";  /* Display: ᑉ */
}

HTML Decimal:

<p>HTML decimal: &#5193;</p>  <!-- Display: ᑉ -->

HTML Hexadecimal:

<p>HTML hex: &#x1449;</p>  <!-- Display: ᑉ -->

URL Encoding:

// ᑉ URL encoding
https://unicodefinder.com/search.php?query=%E1%91%89

Encodings

MD5:

b6e60ecdedb185c52282f0e6c6a081bb

SHA1:

bcecbf28c773ff568d593a870c5478854a15eea1

Base64:

4ZGJ