i'm new in python and regex, i have a string like this:
articulo = "["{"id":2997,"name":"ACEITE CA\u00d1UELAS GIRASOL 1.5L","description":" ACEITE CA\u00d1UELAS GIRASOL 1.5L <\/h1>\n SKU: <\/strong>108953\n EAN: <\/strong>7792180001665","metaDescription":null,"category":{},"slug":"aceite-canuelas-girasol-1-5l-1","sku":"108953","new":false,"consultation":false,"hasVariations":false,"variations":[],"hasGallery":true,"gallery":[{"id":2997,"gallery":[{"order":0,"id":2997}],"type":"product_image"}],"breadcrumb":[{"onDestroy":null}],"categoryPath":"Almac\u00e9n","additionalInfo":[],"documents":[],"minSellingPrice":"326.2000","maxSellingPrice":"326.2000","totalNetStock":99954,"availability":"in stock","brand":{"id":294,"name":"CA\u00d1UELAS","hasImage":false},"price":326.2,"discountedPrice":null,"stock":99954}"]"
And i'm looking for to replace unicode codes to latin character, for example CA\u00d1UELAS must be "CAÑUELAS". I haven found a function to do this, so i'm looking for get to this using regular expression.
Any one can help me solve this?
Cheers, Santy