How to connect to SSID with non-English characters

Can anyone suggest how to connect to a wireless network with a Spanish accented ‘o’ character (o-acute) in the SSID? I can’t get my Mikrotik mAP-2n to connect to the network - the network name is “Enjoy_Barceló” (a hotel wifi network so I can’t change the SSID name).

I have tried using the unicode character equivalent by doing this:

/interface wireless set [find name=“external-wlan”] ssid=“Enjoy_Barcel\C3\B3”

But it just continues to show “Searching for network” as the interface status.

Any help is much appreciated.

Thanks,
Chris

Did you try “Connect” button from Scanner window? It takes SSID from selected network (exact bytes).

Thanks for your reply.

When I do that I get this error (screenshot attached):

Couldn't perform action - object doesn't exist (4)

I believe this is because the external-wlan device is a virtual device. I’m using the mAP-2n as a travel router so it connects to hotel wifi network (external-wlan) and provides local wifi to my devices (internal-wlan). internal-wlan is an ‘ap bridge’ and external-wlan is a ‘station’.
2019-04-10_1253.png

Try “/interface wireless scan ”) in terminal, it will show SSID with non-ascii characters like \xx, so you will know what exatly you should use. Truth is, I expect it to be the same \C3\B3 you used, but maybe not. Do it with internal-wlan if external-wlan doesn’t support scanning.

Thanks - just ran the scan and it shows the wireless network with the expected unicode characters:

AP     00:18:0A:6E:61:80 Enjoy_Barcel\C3\B3    2462/20/gn               -61

I then do this to set the SSID name for the external-wlan device:

/interface wireless set [find name="external-wlan"] ssid="Enjoy_Barcel\C3\B3"

But it just continues to show “searching for network”.

Maybe something else is wrong? Password? You can enable logging for wireless, maybe it will show something useful.

Thanks for your suggestions. You were right, the security profile was not configured correctly for the third-party network - after I enabled debug logging for the external-wlan interface these messages in the log helped to identify the problem:

03:25:17 wireless,debug debug: external-wlan: 00:18:0A:6E:61:80 not acceptable for security profile: does not have matching group ciphers
03:25:17 wireless,debug debug: external-wlan: failed to select network
03:25:18 wireless,debug debug: external-wlan: must select network

I enabled all ciphers in the security profile and now the network connects without issue.

I guess the “searching for network” message is somewhat misleading as that was the source of the confusion. If Mikrotik are listening: it would be more helpful if this showed a message about the actual issue instead of just “searching for network”. But regardless, i’ve worked out the issue now.

Thanks @Sob!