Convert accented Unicode characters to non-accented in JavaScript

A guide on how to convert accented Unicode characters in the Vietnamese alphabet to non-accented letters using JavaScript's normalize method. This JavaScript code efficiently handles Vietnamese text processing.

Here’s the JavaScript code to convert all accented Vietnamese letters to non-accented letters:

function removeVietnameseAccents(str) {
    return str.normalize('NFD')  // Decompose letters and accents
              .replace(/[\u0300-\u036f]/g, '')  // Remove accents
              .replace(/đ/g, 'd')  // Convert đ to d
              .replace(/Đ/g, 'D');  // Convert Đ to D
}

// Example usage
const originalStr = "Chào bạn! Hôm nay trời rất đẹp. Đừng quên mang ô nhé.";
const resultStr = removeVietnameseAccents(originalStr);
console.log(resultStr);  // Output: "Chao ban! Hom nay troi rat dep. Dung quen mang o nhe."

Detailed Explanation:

  1. normalize('NFD'):

    • The normalize method breaks down characters and their accents (NFD form), for example, á becomes a and the accent '.
  2. replace(/[\u0300-\u036f]/g, ''):

    • This regular expression matches and removes all diacritics in the Unicode range \u0300 to \u036f, covering accents like acute, grave, circumflex, etc.
  3. replace(/đ/g, 'd'):

    • Converts the đ character to d.
  4. replace(/Đ/g, 'D'):

    • Converts the Đ character to D.
  5. const resultStr = removeVietnameseAccents(originalStr);:

    • Calls the function to convert the accented Vietnamese string to non-accented.
  6. console.log(resultStr);:

    • Outputs the converted string to the console.

JavaScript Version:

The code is compatible with modern JavaScript versions (ES6 and later). The normalize method is supported in modern browsers like Chrome, Firefox, Edge, and Safari.



Related

How to convert Color Names to Hexcode using JavaScript

A guide on how to convert color names (e.g., "red", "blue") into Hex color codes (#RRGGBB) using JavaScript. This method helps manipulate colors efficiently in web development.
How to pass parameters to a setTimeout() method in JavaScript using arrow function

A guide on how to use `setTimeout()` with an arrow function to pass parameters to a function in JavaScript. This method is useful when you need to delay function execution while passing arguments to it.
How to convert 3-digit color code to 6-digit color code using JavaScript

A guide on converting 3-digit color codes (#RGB) to 6-digit color codes (#RRGGBB) using JavaScript. This ensures consistent color representation in web pages.
How to pass an array as a function parameter in JavaScript using the apply() method

A guide on using the `apply()` method in JavaScript to pass an array as a function parameter. This method allows you to convert an array into individual arguments when calling a function.
How to Fetch JSON Data from an API URL Using JavaScript

Learn how to fetch JSON data from an API URL using JavaScript. Includes detailed code and explanations for each line to help you understand how to use Fetch API for making GET requests and handling JSON data.
How to pass an array as a function parameter in JavaScript using the call() method

A guide on how to pass an array as a function parameter in JavaScript using the `call()` method. The article explains how to utilize the `call()` method to change the context and manually pass parameters from an array.
Send JSON data via POST to an API using JavaScript

A guide on how to send JSON data to an API using the POST method in JavaScript. The code uses the fetch method to perform the POST request and includes detailed explanations of each step.
How to append HTML code to a div using insertAdjacentHTML in JavaScript

A guide on how to append HTML code to a `div` using the `insertAdjacentHTML` method in JavaScript. This method allows you to add content without replacing the existing content.
JavaScript Program to Pass Parameter to a setTimeout() Method Using an Anonymous Function

A guide on how to pass parameters to the `setTimeout()` method using an anonymous function in JavaScript. This approach helps developers delay code execution while passing specific parameters.
Pass parameter to a setTimeout() method in JavaScript using a bind() method

A guide on how to pass a parameter to the `setTimeout()` method using the `bind()` method in JavaScript. This technique allows you to control the parameter passed to the delayed function call.

main.add_cart_success