I was trying to show a point in ListContourPlot, for that I use Epilog ->[Point[]], as follow-
ListContourPlot[STParameterSpaceData, Contours -> {2.3, 6.18, 11.83},
PlotRange -> {{-0.05, 0.05}, {-0.5, 0.5}}, PlotRangeClipping -> True,
AspectRatio -> 0.8, Frame -> True,
BaseStyle -> Directive[Bold, FontFamily -> "Times", 18],
FrameStyle -> Directive[Black, Thick], ImageSize -> 400,
FrameLabel -> {"\!\(\*SubscriptBox[\(g\), \(S\)]\)",
"\!\(\*SubscriptBox[\(g\), \(T\)]\)"},
ContourStyle -> {Directive[Red, Thick], {Green, Thick},
Directive[Darker[Blue], Thick]},
ContourShading -> {Red, Green, Darker[Blue], White},
Epilog -> {PointSize[0.03], Yellow, Point[#] & /@ STBestFittedData},
FrameTicks -> ticks, PlotRangePadding -> None,
PerformanceGoal -> "Quality"]
With that I am getting this plot:-

But I want to make the point to look like a *. But I can not find any command to change the point style from point to *. Can any one help me how I can do this?

Point[]is a circular point. You can change the color and size. You might tryShow[ListContourPlot[...], ListPlot[STBestFittedData, PlotMarkers -> Style["*", Large]]. – Michael E2 Jul 08 '22 at 05:37PlotMarkersand this Q&A: https://mathematica.stackexchange.com/questions/84857/how-can-we-make-publication-quality-plotmarkers-without-version-10 and its associatedResourceFunction, https://resources.wolframcloud.com/FunctionRepository/resources/PolygonMarker/ – Michael E2 Jul 08 '22 at 16:10