I have the input and regex of
const input = `iPhone Xʀ`;
console.log(input.match(/^([\w\d\-\s]*)/));
I have not been able to figure out how to match the ʀ unicode character.
I tried \\p{L} as noted in another SO post.
Also tried putting u for unicode as a modifier.