Como substituir caracteres hexadecimais no Notepad ++

1
    var x = {
    'leaderboardNick': {
        'Player': '\x72\x67\x62\x61\x28\x32\x32\x32\x2c\x20\x32\x33\x2c\x20\x38\x38\x2c\x20\x31\x29',
        '\u3010\u20B1\u20AC\u3011': #FFF,
    },
    'emoticons': {},
    'indicator': {},
    'indicatorMaxSize': 0xc8
 };

Como posso alterar esses caracteres (0xc8, \ u3010, \ x72) com ascii? Eu tenho tanta palavra no meu texto.

Assim:

var x = {
    'leaderboardNick': {
        'Player': 'rgba(222, 23, 88, 1)',
        '【₱€】': #FFF,
    },
    'emoticons': {},
    'indicator': {},
    'indicatorMaxSize': 200
};
    
por user2976880 15.02.2018 / 13:43

0 respostas