This converter replaces Latin letters with visually identical Cyrillic homoglyphs, the trick behind homoglyph and IDN spoofing attacks. The output looks like ordinary Latin text but is built from entirely different Unicode code points. It is provided as a security-awareness and detection tool — so you can see, count, and recognise the swap, not so you can deceive anyone. Everything runs locally in your browser.
How it works
Many Cyrillic letters were designed to share shapes with Latin ones, so in most fonts they are indistinguishable. The converter maps each Latin character to its closest Cyrillic counterpart:
a -> а (U+0430) e -> е (U+0435) o -> о (U+043E)
p -> р (U+0440) c -> с (U+0441) x -> х (U+0445)
A -> А (U+0410) E -> Е (U+0415) H -> Н (U+041D)
Only letters with a convincing match are swapped; the rest stay Latin. A live counter reports how many characters were replaced, which is exactly the signal a homoglyph detector looks for — mixed scripts within a single token.
Tips and notes
To verify the deception, paste the output into any Unicode or hex inspector: the glyphs that look like a, o and p will report Cyrillic code points instead of the Latin Basic Latin block. Browsers and registrars defend against this by showing Punycode (the xn-- form) when a domain mixes scripts — a habit worth building. Use this tool to train your eye and your filters; using homoglyphs to impersonate brands or phish users is illegal in most countries.