What is this character?

Upon stripping a HTML page I come across this character (OSX). What is this character? I can’t find it. Line 53. It seems hex BFBC.

Never seen that before. BFBC in Unicode is usually in the Hangui alphabet range, but to me it seems more like the font designer left a copyright mark in a range that’s not normally used by his font. Could very well be anything else …

Did you check what happens if you assign another font to that character? And did you look through some of the symbol & signs categories in the character panel that can be accessed via “Keyboard” system preferences?

[quote=79783:@Alexander van der Linden]Upon stripping a HTML page I come across this character (OSX). What is this character? I can’t find it. Line 53. It seems hex BFBC.
[/quote]

Have looked at the source ?

I had trouble with while I had to strip an array from dead/unwanted characters. This character took one position but Len(my array(i)) returned 0. I have solved it by stripping all characters above Ascii 127.

Thanks for your help.