[Tex/LaTex] this w symbol in latex code

symbols

Does anyone know what is the code for this symbol in latex ?
enter image description here

Best Answer

My answer simply confirms the comment of the very good @JouleV user, adding a minimum compilation code and a clarification of the font used. newtxtext package give a font Times clone; in mathematical mode to have the same characters Times you can add newtxmath.

enter image description here

\documentclass[a4paper,12pt]{article}
\usepackage{newtxtext,newtxmath}

\begin{document}
w in text mode and w in math-mode: $w$.
\end{document}

Very similar also with Cambria Math, often used in other writing programs is very close to the image. See this code compilable with LuaLaTeX.

enter image description here

\documentclass{article}

\usepackage{unicode-math} 
\usepackage{fontspec}
\setmainfont{Cambria}
\setmathfont{Cambria Math}


\begin{document} 
$w$
\end{document}
Related Question