Unicode Finder

"C" U+0043(LATIN CAPITAL LETTER C)

C
U+0043
Block Name
Basic Latin
Name
LATIN CAPITAL LETTER C

Programming

C
\u0043
JavaScript
\u0043
Java
\u0043
Json
\u0043
Python
\u0043
Perl
\x{0043}
PHP
\x{0043}
Ruby
\u{0043}
Rust
\u{43}
Go
\u0043

Web

CSS
\000043
HtmlDecimal
C
HtmlHexadecimal
C
Url
C

Code

MD5
0d61f8370cad1d412f80b84d143e1257
Sha1
32096c2e0eff33d844ee6d675407ace18289357d
Base64
Qw==

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0043';
console.log(char);  // Output: C

Java:

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

JSON:

{"text": "\u0043"}  // Value: C

Python:

char = '\u0043'
print(char)  # Output: C

Perl:

my $char = "\x{0043}";
print $char;  # Output: C

PHP:

$char = "\x{0043}";
echo $char;  // Output: C

Ruby:

char = "\u{0043}"
puts char  # Output: C

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000043";  /* Display: C */
}

HTML Decimal:

<p>HTML decimal: &#67;</p>  <!-- Display: C -->

HTML Hexadecimal:

<p>HTML hex: &#x0043;</p>  <!-- Display: C -->

URL Encoding:

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

Encodings

MD5:

0d61f8370cad1d412f80b84d143e1257

SHA1:

32096c2e0eff33d844ee6d675407ace18289357d

Base64:

Qw==