# UTF8-reInterpretation **Repository Path**: mirrors_TobiasNickel/UTF8-reInterpretation ## Basic Information - **Project Name**: UTF8-reInterpretation - **Description**: make sure that UTF8 specialchars are interpreted right - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2026-05-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README UTF8-reInterpretation ===================== make sure that UTF8 specialchars are interpreted right Sometimes you have the problem that Specialchars are interpreted as something like **Ä**. This module makes sure, that these kind of failure get corrected. and **Ä** is interpreted as an **Ä**. ```JS var utf8reInterpreter=require("./utf8-reInterpreter.js") myString="Ärzte"; // germany for doctors console.log(utf8reInterpreter(myString)); // output: Ärzte ```