Unicode Finder

"ᣌ" U+18CC(CANADIAN SYLLABICS NWOO)

U+18CC
ブロック名
Unified Canadian Aboriginal Syllabics Extended
名前
CANADIAN SYLLABICS NWOO

Programming

C
\u18CC
JavaScript
\u18CC
Java
\u18CC
Json
\u18CC
Python
\u18CC
Perl
\x{18CC}
PHP
\x{18CC}
Ruby
\u{18CC}
Rust
\u{18CC}
Go
\u18CC

Web

CSS
\0018CC
HtmlDecimal
ᣌ
HtmlHexadecimal
ᣌ
Url
%E1%A3%8C

Code

MD5
ee763a4da98c43cf124684a92c8cdfe8
Sha1
f2213ab438f9184b2cde76d5766b553a36d2839b
Base64
4aOM

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u18CC';
console.log(char);  // Output: ᣌ

Java:

char c = '\u18CC';
System.out.println(c);  // Output: ᣌ

JSON:

{"text": "\u18CC"}  // Value: ᣌ

Python:

char = '\u18CC'
print(char)  # Output: ᣌ

Perl:

my $char = "\x{18CC}";
print $char;  # Output: ᣌ

PHP:

$char = "\x{18CC}";
echo $char;  // Output: ᣌ

Ruby:

char = "\u{18CC}"
puts char  # Output: ᣌ

Rust:

let c = '\u{18CC}';
println!("{}", c);  // Output: ᣌ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0018CC";  /* Display: ᣌ */
}

HTML Decimal:

<p>HTML decimal: &#6348;</p>  <!-- Display: ᣌ -->

HTML Hexadecimal:

<p>HTML hex: &#x18CC;</p>  <!-- Display: ᣌ -->

URL Encoding:

// ᣌ URL encoding
https://unicodefinder.com/search.php?query=%E1%A3%8C

Encodings

MD5:

ee763a4da98c43cf124684a92c8cdfe8

SHA1:

f2213ab438f9184b2cde76d5766b553a36d2839b

Base64:

4aOM