Unicode Finder

"ᢳ" U+18B3(CANADIAN SYLLABICS WAY)

U+18B3
Block Name
Unified Canadian Aboriginal Syllabics Extended
Name
CANADIAN SYLLABICS WAY

Programming

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

Web

CSS
\0018B3
HtmlDecimal
ᢳ
HtmlHexadecimal
ᢳ
Url
%E1%A2%B3

Code

MD5
241eb87d81026bdd77599d6c2c8cc59f
Sha1
b4b19703e6ecad5e969369fff2498633eb094d3c
Base64
4aKz

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u18B3';
console.log(char);  // Output: ᢳ

Java:

char c = '\u18B3';
System.out.println(c);  // Output: ᢳ

JSON:

{"text": "\u18B3"}  // Value: ᢳ

Python:

char = '\u18B3'
print(char)  # Output: ᢳ

Perl:

my $char = "\x{18B3}";
print $char;  # Output: ᢳ

PHP:

$char = "\x{18B3}";
echo $char;  // Output: ᢳ

Ruby:

char = "\u{18B3}"
puts char  # Output: ᢳ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#6323;</p>  <!-- Display: ᢳ -->

HTML Hexadecimal:

<p>HTML hex: &#x18B3;</p>  <!-- Display: ᢳ -->

URL Encoding:

// ᢳ URL encoding
https://unicodefinder.com/search.php?query=%E1%A2%B3

Encodings

MD5:

241eb87d81026bdd77599d6c2c8cc59f

SHA1:

b4b19703e6ecad5e969369fff2498633eb094d3c

Base64:

4aKz