Conversions can be done either with the "->" conversion operator or with the equivalent "convert" function. The function has three parameters: a quantity, a unit to convert from and a unit to convert to. Likewise the conversion operator uses three values: the quantity and unit to convert from are placed on the left side of the operator while the unit to convert to goes to the right side.
The basic unit of electric potential is the volt. All units of electric potential are expressed in terms of this base unit and so measurements can be converted from any one of the following units to any other.
10 volt -> auEPot = 0.3674932
convert(10; volt; auEPot) = 0.3674932
10 volt -> abVolt = 1e+9
convert(10; volt; abVolt) = 1e+9
10 volt -> statVolt = 0.0333565
convert(10; volt; statVolt) = 0.0333565
10 abVolts -> statVolts = 3.335646e-10
convert(10; abVolt; statVolt) = 3.335646e-10
10 auEPot -> volt = 272.11385
convert(10; auEPot; volt) = 272.11385
10 statVolt -> abVolt = 2.99792e+11
convert(10; statVolt; abVolt) = 2.99792e+11