WeChat Remark Persists Over Nickname Changes | Generated by AI

Home 2026.07

Question: If I set a WeChat alias (remark/备注) for a contact, does it keep showing my alias even after they change their WeChat username/nickname? And if I don’t set one, does their display name update live?

Answer: Yes, that’s exactly how it works.

Mental model:

display_name = remark_map[wxid] if remark_map.get(wxid) else contact.nickname

Same pattern shows up in Telegram (contact name vs. “First/Last name”), Slack (custom display name vs. profile name pulled via SCIM/directory sync), etc. — local override wins, otherwise you inherit the upstream mutable field.

One gotcha: group chat display has its own layer — group nickname (群昵称) > remark > nickname, in that priority order, if the person set a nickname specific to that group.


Back Donate