קוד:
function HebToUtf(strInputEntry)
strInputEntry = Replace(strInputEntry, "א", "א", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "ב", "ב", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "ג", "ג", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "ד", "ד", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "ה", "ה", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "ו", "ו", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "ז", "ז", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "ח", "ח", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "ט", "ט", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "י", "י", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "כ", "כ", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "ל", "ל", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "מ", "מ", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "נ", "נ", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "ס", "ס", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "ע", "ע", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "פ", "פ", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "צ", "צ", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "ק", "ק", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "ר", "ר", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "ש", "ש", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "ת", "ת", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "ם", "ם", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "ן", "ן", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "ף", "ף", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "ך", "ך", 1, -1, 0)
strInputEntry = Replace(strInputEntry, "ץ", "ץ", 1, -1, 0)
HebToUtf=strInputEntry
end function