Unicode Finder

"ᱯ" U+1C6F(OL CHIKI LETTER EP)

U+1C6F
블록 이름
Ol Chiki
이름
OL CHIKI LETTER EP

Programming

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

Web

CSS
\001C6F
HtmlDecimal
ᱯ
HtmlHexadecimal
ᱯ
Url
%E1%B1%AF

Code

MD5
5576445b70f54ab0e94ed94080c15d81
Sha1
f832dd0468ecf1cf8d13992cb5ea398787bd6bf0
Base64
4bGv

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\u1C6F';
console.log(char);  // Output: ᱯ

Java:

char c = '\u1C6F';
System.out.println(c);  // Output: ᱯ

JSON:

{"text": "\u1C6F"}  // Value: ᱯ

Python:

char = '\u1C6F'
print(char)  # Output: ᱯ

Perl:

my $char = "\x{1C6F}";
print $char;  # Output: ᱯ

PHP:

$char = "\x{1C6F}";
echo $char;  // Output: ᱯ

Ruby:

char = "\u{1C6F}"
puts char  # Output: ᱯ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7279;</p>  <!-- Display: ᱯ -->

HTML Hexadecimal:

<p>HTML hex: &#x1C6F;</p>  <!-- Display: ᱯ -->

URL Encoding:

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

Encodings

MD5:

5576445b70f54ab0e94ed94080c15d81

SHA1:

f832dd0468ecf1cf8d13992cb5ea398787bd6bf0

Base64:

4bGv