原理:原神富文本只识别unicode后两位数字编码
例如字母i unicode 编码为 \u0069 修改为\u0969字符३也会被原神富文本识别i
所以我们只需要替换标签中被屏蔽的字符即可
原标签: <b>粗体</b> <i>斜体</i> <color=#ba9>颜色</color> <size=50>大小</size>
修改后标签:
<ॢ>粗体</ॢ>
<३>斜体</३>
<coլor=#ba9>颜色</coլor>
<ѳɩѺɥ=40>大小</ѳɩѺɥ>
# 查找字符unicode编码
unicode_code_point = ord('i')
hex_representation = hex(unicode_code_point)
print(hex_representation)
# 遍历\u0XYY字符
characters_for_code_points = [chr(int(f'0{x}69', 16)) for x in range(10)]
print(characters_for_code_points)
评论区