@EdHansberry
Is the fundamental problem obtaining the ASCII code of each char of the Item Number?
This is the code I used:
//Char codes for 0-9 A-Z a-z
Set(charCodesAlphanumeric,[48,49,50,51,52,53,54,55,56,57,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122]);
//Initialize collections
ClearCollect(myItemNumber, Split("12345ABR13",""));
ClearCollect(mySolution, {Char: "", CharCode: 0});
Clear(mySolution);
//Loop to find Char codes
ForAll(myItemNumber,
ForAll(charCodesAlphanumeric,
If(Char(Value) = Result, Collect(mySolution, {Char: Result, CharCode: Value}))
)
)
Resulting in the collection mySolution:

Char code reference here (instead of ASCII):
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-char
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."