Arabic style: "percent" bug

"Should be suffixed with ARABIC PERCENT SIGN “٪”. Uses latin % instead.

JavaScript

var largeNum = 98.75;

console.log(largeNum + "Should be suffixed with ARABIC PERCENT SIGN “٪”:");

console.log("Percent: " + 
            new Intl.NumberFormat("ar", {
                style: "percent"
            }).format(largeNum));