hi Harold,
If you can describe what a function does then it exists. I understand what your function does so you have answered your own question.
But I expect you mean can I press a button and get that result. That depends on where the button is.
I don't think any calculators do this but you can certainly do it using MS Excel. You'd have to convert the integer to a string, use MID$ to extract the digit you wanted and then convert the string back to a number.
Or you could divide by the power of ten that makes your digit in the tenths place.
Use <number> - INT<number> to remove the whole numbered part.
Times by ten and use INT to remove the decimal part and you are left with the required digit.
If you are trying to do this as part of a computer program, then you'd better say what language you are using.
Bob