Unicode Finder

"ᛍ" U+16CD(RUNIC LETTER C)

U+16CD
Nama Blok
Runic
Nama
RUNIC LETTER C

Programming

C
\u16CD
JavaScript
\u16CD
Java
\u16CD
Json
\u16CD
Python
\u16CD
Perl
\x{16CD}
PHP
\x{16CD}
Ruby
\u{16CD}
Rust
\u{16CD}
Go
\u16CD

Web

CSS
\0016CD
HtmlDecimal
ᛍ
HtmlHexadecimal
ᛍ
Url
%E1%9B%8D

Code

MD5
43b2e61a8d3665bfd47b2b2916996dbd
Sha1
5c80b9bc34e780f754e8c4050ab6e90f742d8d6e
Base64
4ZuN

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u16CD';
console.log(char);  // Output: ᛍ

Java:

char c = '\u16CD';
System.out.println(c);  // Output: ᛍ

JSON:

{"text": "\u16CD"}  // Value: ᛍ

Python:

char = '\u16CD'
print(char)  # Output: ᛍ

Perl:

my $char = "\x{16CD}";
print $char;  # Output: ᛍ

PHP:

$char = "\x{16CD}";
echo $char;  // Output: ᛍ

Ruby:

char = "\u{16CD}"
puts char  # Output: ᛍ

Rust:

let c = '\u{16CD}';
println!("{}", c);  // Output: ᛍ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0016CD";  /* Display: ᛍ */
}

HTML Decimal:

<p>HTML decimal: &#5837;</p>  <!-- Display: ᛍ -->

HTML Hexadecimal:

<p>HTML hex: &#x16CD;</p>  <!-- Display: ᛍ -->

URL Encoding:

// ᛍ URL encoding
https://unicodefinder.com/search.php?query=%E1%9B%8D

Encodings

MD5:

43b2e61a8d3665bfd47b2b2916996dbd

SHA1:

5c80b9bc34e780f754e8c4050ab6e90f742d8d6e

Base64:

4ZuN