Unicode Finder

"ᑨ" U+1468(CANADIAN SYLLABICS TTI)

U+1468
Nama Blok
Unified Canadian Aboriginal Syllabics
Nama
CANADIAN SYLLABICS TTI

Programming

C
\u1468
JavaScript
\u1468
Java
\u1468
Json
\u1468
Python
\u1468
Perl
\x{1468}
PHP
\x{1468}
Ruby
\u{1468}
Rust
\u{1468}
Go
\u1468

Web

CSS
\001468
HtmlDecimal
ᑨ
HtmlHexadecimal
ᑨ
Url
%E1%91%A8

Code

MD5
608d6ac73d0d9352b5f4fe914bb53fb0
Sha1
fffce4210c8457ccc90850a042ed33b8a4667359
Base64
4ZGo

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1468';
console.log(char);  // Output: ᑨ

Java:

char c = '\u1468';
System.out.println(c);  // Output: ᑨ

JSON:

{"text": "\u1468"}  // Value: ᑨ

Python:

char = '\u1468'
print(char)  # Output: ᑨ

Perl:

my $char = "\x{1468}";
print $char;  # Output: ᑨ

PHP:

$char = "\x{1468}";
echo $char;  // Output: ᑨ

Ruby:

char = "\u{1468}"
puts char  # Output: ᑨ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001468";  /* Display: ᑨ */
}

HTML Decimal:

<p>HTML decimal: &#5224;</p>  <!-- Display: ᑨ -->

HTML Hexadecimal:

<p>HTML hex: &#x1468;</p>  <!-- Display: ᑨ -->

URL Encoding:

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

Encodings

MD5:

608d6ac73d0d9352b5f4fe914bb53fb0

SHA1:

fffce4210c8457ccc90850a042ed33b8a4667359

Base64:

4ZGo