According to the Oniguruma documentation, the \\d character type matches:
\\d
decimal digit char Unicode: General_Category -- Decimal_N
\d will only match for ASCII numbers by default. You can manually turn on Unicode matching in a regex using the (counter-intuitive) (?u) syntax:
\d
(?u)
"