Unicode Finder

"ć" U+0107(LATIN SMALL LETTER C WITH ACUTE)

ć
U+0107
Block Name
Latin Extended-A
Name
LATIN SMALL LETTER C WITH ACUTE

Programming

C
\u0107
JavaScript
\u0107
Java
\u0107
Json
\u0107
Python
\u0107
Perl
\x{0107}
PHP
\x{0107}
Ruby
\u{0107}
Rust
\u{107}
Go
\u0107

Web

CSS
\000107
HtmlDecimal
ć
HtmlHexadecimal
ć
Url
%C4%87

Code

MD5
1ec9282ed0028938324a7062dac1c6dc
Sha1
307952d36f3109016626ca8934fab15670934ef6
Base64
xIc=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0107';
console.log(char);  // Output: ć

Java:

char c = '\u0107';
System.out.println(c);  // Output: ć

JSON:

{"text": "\u0107"}  // Value: ć

Python:

char = '\u0107'
print(char)  # Output: ć

Perl:

my $char = "\x{0107}";
print $char;  # Output: ć

PHP:

$char = "\x{0107}";
echo $char;  // Output: ć

Ruby:

char = "\u{0107}"
puts char  # Output: ć

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000107";  /* Display: ć */
}

HTML Decimal:

<p>HTML decimal: &#263;</p>  <!-- Display: ć -->

HTML Hexadecimal:

<p>HTML hex: &#x0107;</p>  <!-- Display: ć -->

URL Encoding:

// ć URL encoding
https://unicodefinder.com/search.php?query=%C4%87

Encodings

MD5:

1ec9282ed0028938324a7062dac1c6dc

SHA1:

307952d36f3109016626ca8934fab15670934ef6

Base64:

xIc=