Unicode Finder

"ᕈ" U+1548(CANADIAN SYLLABICS RO)

U+1548
ブロック名
Unified Canadian Aboriginal Syllabics
名前
CANADIAN SYLLABICS RO

Programming

C
\u1548
JavaScript
\u1548
Java
\u1548
Json
\u1548
Python
\u1548
Perl
\x{1548}
PHP
\x{1548}
Ruby
\u{1548}
Rust
\u{1548}
Go
\u1548

Web

CSS
\001548
HtmlDecimal
ᕈ
HtmlHexadecimal
ᕈ
Url
%E1%95%88

Code

MD5
534334d09f05cb3e9e64a24d5b5f1dba
Sha1
6dd9953272042649bfcda51eeb6700490b439ac9
Base64
4ZWI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u1548';
console.log(char);  // Output: ᕈ

Java:

char c = '\u1548';
System.out.println(c);  // Output: ᕈ

JSON:

{"text": "\u1548"}  // Value: ᕈ

Python:

char = '\u1548'
print(char)  # Output: ᕈ

Perl:

my $char = "\x{1548}";
print $char;  # Output: ᕈ

PHP:

$char = "\x{1548}";
echo $char;  // Output: ᕈ

Ruby:

char = "\u{1548}"
puts char  # Output: ᕈ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001548";  /* Display: ᕈ */
}

HTML Decimal:

<p>HTML decimal: &#5448;</p>  <!-- Display: ᕈ -->

HTML Hexadecimal:

<p>HTML hex: &#x1548;</p>  <!-- Display: ᕈ -->

URL Encoding:

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

Encodings

MD5:

534334d09f05cb3e9e64a24d5b5f1dba

SHA1:

6dd9953272042649bfcda51eeb6700490b439ac9

Base64:

4ZWI