How to add an id selector consisting only of numbers?

I'm trying to get data from a table cell whose id consists of numbers, Web Scraper does not allow me to save such a selector, and reports an error.

How to save such a selector?

Found this solution for the attribute td[id='168102']

You could do that, but it would only work for that exact ID number. If you want to match by position, something like:

tr.item > td:nth-of-type(4)