Unicode Finder

"c" U+0063(LATIN SMALL LETTER C)

c
U+0063
Block Name
Basic Latin
Name
LATIN SMALL LETTER C

Programming

C
\u0063
JavaScript
\u0063
Java
\u0063
Json
\u0063
Python
\u0063
Perl
\x{0063}
PHP
\x{0063}
Ruby
\u{0063}
Rust
\u{63}
Go
\u0063

Web

CSS
\000063
HtmlDecimal
c
HtmlHexadecimal
c
Url
c

Code

MD5
4a8a08f09d37b73795649038408b5f33
Sha1
84a516841ba77a5b4648de2cd0dfcb30ea46dbb4
Base64
Yw==

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0063';
console.log(char);  // Output: c

Java:

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

JSON:

{"text": "\u0063"}  // Value: c

Python:

char = '\u0063'
print(char)  # Output: c

Perl:

my $char = "\x{0063}";
print $char;  # Output: c

PHP:

$char = "\x{0063}";
echo $char;  // Output: c

Ruby:

char = "\u{0063}"
puts char  # Output: c

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000063";  /* Display: c */
}

HTML Decimal:

<p>HTML decimal: &#99;</p>  <!-- Display: c -->

HTML Hexadecimal:

<p>HTML hex: &#x0063;</p>  <!-- Display: c -->

URL Encoding:

// c URL encoding
https://unicodefinder.com/search.php?query=c

Encodings

MD5:

4a8a08f09d37b73795649038408b5f33

SHA1:

84a516841ba77a5b4648de2cd0dfcb30ea46dbb4

Base64:

Yw==