Retrieves the corresponding Persian license plate character for a given key.
Looks up the character in the plateChars mapping using the provided key.
plateChars
The key representing a license plate character code.
The corresponding Persian character if found, otherwise undefined.
undefined
const result = getPlateChar("12");console.log(result); // "الف" Copy
const result = getPlateChar("12");console.log(result); // "الف"
const result = getPlateChar("99");console.log(result); // undefined (if not defined in plateChars) Copy
const result = getPlateChar("99");console.log(result); // undefined (if not defined in plateChars)
Retrieves the corresponding Persian license plate character for a given key.
Looks up the character in the
plateCharsmapping using the provided key.