I've made a whacky way to parse HTML, but it works. To display a fieldX in a user's profile, you could use this in the place you want to display it, in the memberinfo template (replacing X with the number of the field):
Code:
<script type="text/javascript">
var fieldX="$userinfo[fieldX]";
fieldX=fieldX.replace(/</ig,"<");
fieldX=fieldX.replace(/>/ig,">");
fieldX=fieldX.replace(/"/ig,'"');
fieldX=fieldX.replace(/&/ig,"&");
document.write(fieldX);
</script>