Unicode Finder

"ᒉ" U+1489(CANADIAN SYLLABICS CE)

U+1489
ブロック名
Unified Canadian Aboriginal Syllabics
名前
CANADIAN SYLLABICS CE

Programming

C
\u1489
JavaScript
\u1489
Java
\u1489
Json
\u1489
Python
\u1489
Perl
\x{1489}
PHP
\x{1489}
Ruby
\u{1489}
Rust
\u{1489}
Go
\u1489

Web

CSS
\001489
HtmlDecimal
ᒉ
HtmlHexadecimal
ᒉ
Url
%E1%92%89

Code

MD5
133d05d1a5b229c8519febdea8766168
Sha1
292ca1761ad3ecfb8d0cb87cc7e592cad7e65473
Base64
4ZKJ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u1489';
console.log(char);  // Output: ᒉ

Java:

char c = '\u1489';
System.out.println(c);  // Output: ᒉ

JSON:

{"text": "\u1489"}  // Value: ᒉ

Python:

char = '\u1489'
print(char)  # Output: ᒉ

Perl:

my $char = "\x{1489}";
print $char;  # Output: ᒉ

PHP:

$char = "\x{1489}";
echo $char;  // Output: ᒉ

Ruby:

char = "\u{1489}"
puts char  # Output: ᒉ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001489";  /* Display: ᒉ */
}

HTML Decimal:

<p>HTML decimal: &#5257;</p>  <!-- Display: ᒉ -->

HTML Hexadecimal:

<p>HTML hex: &#x1489;</p>  <!-- Display: ᒉ -->

URL Encoding:

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

Encodings

MD5:

133d05d1a5b229c8519febdea8766168

SHA1:

292ca1761ad3ecfb8d0cb87cc7e592cad7e65473

Base64:

4ZKJ