The Well-Known Text (WKT) format is a text markup language for representing coordinate reference systems (CRS). Here we will decode two examples of WKT: one for a Geographic Coordinate Reference System (GEOGCRS) and one for a Projected Coordinate Reference System (PROJCRS).
                GEOGCRS["Mars (2015) - Sphere ",
                    DATUM["Mars (2015) - Sphere",
                        ELLIPSOID["Mars (2015) - Sphere", 3396190, 0,
                            LENGTHUNIT["metre", 1, ID["EPSG", 9001]]],
                        ANCHOR["Viking 1 lander : 47.95137 W"]],
                    PRIMEM["Reference Meridian", 0,
                        ANGLEUNIT["degree", 0.0174532925199433, ID["EPSG", 9122]]],
                    CS[ellipsoidal, 2],
                        AXIS["geodetic latitude (Lat)", north,
                            ORDER[1],
                            ANGLEUNIT["degree", 0.0174532925199433]],
                        AXIS["geodetic longitude (Lon)", east,
                            ORDER[2],
                            ANGLEUNIT["degree", 0.0174532925199433]],
                    ID["IAU", 49900, 2015],
                    REMARK["Use semi-major radius as sphere radius for interoperability. Source of IAU Coordinate systems: doi:10.1007/s10569-017-9805-5"]]
                    
                    Explanation:
                PROJCRS["Mars (2015) - Sphere / Sinusoidal, clon = 0",
                    BASEGEOGCRS["Mars (2015) - Sphere",
                        DATUM["Mars (2015) - Sphere",
                        ELLIPSOID["Mars (2015) - Sphere", 3396190, 0,
                            LENGTHUNIT["metre", 1, ID["EPSG", 9001]]],
                        ANCHOR["Viking 1 lander : 47.95137 W"]],
                        PRIMEM["Reference Meridian", 0,
                            ANGLEUNIT["degree", 0.0174532925199433, ID["EPSG", 9122]]],
                        ID["IAU", 49900, 2015]],
                    CONVERSION["Sinusoidal, clon = 0",
                        METHOD["Sinusoidal",
                            ID["PROJ", "SINUSOIDAL"]],
                        PARAMETER["Longitude of natural origin", 0,
                            ANGLEUNIT["degree",0.0174532925199433,ID["EPSG", 9122]],
                            ID["EPSG", 8802]],
                        PARAMETER["False easting", 0,
                            LENGTHUNIT["metre",1,ID["EPSG", 9001]],
                            ID["EPSG", 8806]],
                        PARAMETER["False northing", 0,
                            LENGTHUNIT["metre",1,ID["EPSG", 9001]],
                            ID["EPSG", 8807]]],
                    CS[Cartesian, 2],
                        AXIS["Easting (E)", east,
                            ORDER[1],
                            LENGTHUNIT["metre", 1]],
                        AXIS["Northing (N)", north,
                            ORDER[2],
                            LENGTHUNIT["metre", 1]],
                    ID["IAU", 49920, 2015]]
                    
                    Explanation:
For more details on Well-Known Text (WKT) representation, refer to the OGC WKT CRS standard.