Unicode Finder

"ᕂ" U+1542(CANADIAN SYLLABICS RE)

U+1542
Nama Blok
Unified Canadian Aboriginal Syllabics
Nama
CANADIAN SYLLABICS RE

Programming

C
\u1542
JavaScript
\u1542
Java
\u1542
Json
\u1542
Python
\u1542
Perl
\x{1542}
PHP
\x{1542}
Ruby
\u{1542}
Rust
\u{1542}
Go
\u1542

Web

CSS
\001542
HtmlDecimal
ᕂ
HtmlHexadecimal
ᕂ
Url
%E1%95%82

Code

MD5
7ae51d46867d24429d8a3e8712f948a7
Sha1
1d80208fcee6653624101adc3df54ee5721557f3
Base64
4ZWC

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1542';
console.log(char);  // Output: ᕂ

Java:

char c = '\u1542';
System.out.println(c);  // Output: ᕂ

JSON:

{"text": "\u1542"}  // Value: ᕂ

Python:

char = '\u1542'
print(char)  # Output: ᕂ

Perl:

my $char = "\x{1542}";
print $char;  # Output: ᕂ

PHP:

$char = "\x{1542}";
echo $char;  // Output: ᕂ

Ruby:

char = "\u{1542}"
puts char  # Output: ᕂ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001542";  /* Display: ᕂ */
}

HTML Decimal:

<p>HTML decimal: &#5442;</p>  <!-- Display: ᕂ -->

HTML Hexadecimal:

<p>HTML hex: &#x1542;</p>  <!-- Display: ᕂ -->

URL Encoding:

// ᕂ URL encoding
https://unicodefinder.com/search.php?query=%E1%95%82

Encodings

MD5:

7ae51d46867d24429d8a3e8712f948a7

SHA1:

1d80208fcee6653624101adc3df54ee5721557f3

Base64:

4ZWC