Fullwidth Latin Small Letter C

Shortcodes

Copy useful codes for fullwidth latin small letter c symbol c to use in websites, apps, blogs, and docs.

Unicode
U+FF43
HTML Code
c
HEX Code
c
CSS Code
\FF43
JS/JSON
\uFF43
Unix/C/PHP/JAVA
0xFF43
URL-encode
%EF%BD%83

Customize Fullwidth Latin Small Letter C

Customize c, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Fullwidth Latin Small Letter C Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>c</span>
HTML Code:
<span>&#65347;</span>
HEX Code:
<span>&#xFF43;</span>

Add with CSS

.fullwidth-latin-small-letter-c::before {
  content: '\\FF43';
}

Set it in JavaScript

document.querySelector('.fullwidth-latin-small-letter-c').textContent = 'c';
copied