Unicode Finder

"ᱳ" U+1C73(OL CHIKI LETTER LO)

U+1C73
ブロック名
Ol Chiki
名前
OL CHIKI LETTER LO

Programming

C
\u1C73
JavaScript
\u1C73
Java
\u1C73
Json
\u1C73
Python
\u1C73
Perl
\x{1C73}
PHP
\x{1C73}
Ruby
\u{1C73}
Rust
\u{1C73}
Go
\u1C73

Web

CSS
\001C73
HtmlDecimal
ᱳ
HtmlHexadecimal
ᱳ
Url
%E1%B1%B3

Code

MD5
a54d311ebeb7dd9a8bad97f0275100ca
Sha1
4f1fa90e787fc2b309077a5f480f7b3eb070e0b7
Base64
4bGz

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u1C73';
console.log(char);  // Output: ᱳ

Java:

char c = '\u1C73';
System.out.println(c);  // Output: ᱳ

JSON:

{"text": "\u1C73"}  // Value: ᱳ

Python:

char = '\u1C73'
print(char)  # Output: ᱳ

Perl:

my $char = "\x{1C73}";
print $char;  # Output: ᱳ

PHP:

$char = "\x{1C73}";
echo $char;  // Output: ᱳ

Ruby:

char = "\u{1C73}"
puts char  # Output: ᱳ

Rust:

let c = '\u{1C73}';
println!("{}", c);  // Output: ᱳ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001C73";  /* Display: ᱳ */
}

HTML Decimal:

<p>HTML decimal: &#7283;</p>  <!-- Display: ᱳ -->

HTML Hexadecimal:

<p>HTML hex: &#x1C73;</p>  <!-- Display: ᱳ -->

URL Encoding:

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

Encodings

MD5:

a54d311ebeb7dd9a8bad97f0275100ca

SHA1:

4f1fa90e787fc2b309077a5f480f7b3eb070e0b7

Base64:

4bGz