For my Flutter project, I am using mqtt_client: ^9.7.2.
I want to subscribe & publish to a Korean topic and send/receive Korean payloads.
When I subscribe and publish to an English topic, like "test/hi", the payload decodes well using utf8.
However, if I try to subscribe to Korean topics, then it doesn't work.
If I try subscribing to "test/안녕", then nothing happens.
What I want :
EXAMPLE::Subscribing to the test/안녕 topic
EXAMPLE::Subscription confirmed for topic test/안녕
EXAMPLE::Publishing our topic
EXAMPLE::Published notification:: topic is test/안녕, with Qos MqttQos.exactlyOnce
EXAMPLE::Change notification:: topic is <test/안녕>, payload is <-- Hello 안녕하세요 -->
What is happening :
EXAMPLE::Subscribing to the test/안녕 topic
EXAMPLE::Publishing our topic