UTF-8 characters not supported in XML large data editor

Marcel Hoefs

Member³
Are UTF-8 characters supported in XML data in de large data editor? I am unabled to display these characters correctly:

Settings:
  • PL/SQL Dev. version: 12.0.3.1821
  • NLS_LANG: DUTCH_THE NETHERLANDS.UTF8
  • NLS_CHARACTERSET: AL32UTF8
  • Preference: Unicode enabled is checked
  • Grid font: Consolas, script Western
  • Editor font: Consolas, script Western

Using these settings I get:

eQBpA5i.png


I have highlighted in yellow the string containing UTF-8 characters. These characters are displayed correctly in the upper SQL editor and in the middle data grid. However in the lower XML large data editor these UTF-8 characters are "translated" to something else.

So, what am I missing to get the UTF-8 characters displayed correctly in the large data editor as well?
 
Hi Marco,

This is the query to reproduce the UTF8 character problem in the large data editor:

Code:
select xmlcast(xmlquery('$b/Dummy/Name' passing t.xml_message as "b" returning content) as varchar2(100)) name
,      t.*
from   (select xmlelement("Dummy",xmlelement("Name",'Mě
 
Back
Top