1

enter image description here

I wanted to enter this character in my LaTeX code.But I am not able to find the command for it. Can anybody help me with it?

A K Tom Thomas
  • 85
  • 1
  • 2
  • 7

2 Answers2

3

This is the answer for the clarified question (lowercase c):

\documentclass{article}
\usepackage{mathbbol}
\begin{document}

\[
\mathbb{c}
\]

\end{document}
1

You could also try

\documentclass{article}
\usepackage{dsfont}
\usepackage{textcomp}
\begin{document}
\ensuremath{\mathds{C}}%dsfont

\textcolonmonetary%textcomp
\end{document}

enter image description here

knut
  • 8,838