Codon to Amino Acid Translator
Translate a three-nucleotide RNA codon into its amino acid under the standard genetic code, including the three stop codons and the AUG start.
Amino acid
—
One codon at a time: the standard table
Type three letters, get the three-letter abbreviation of the amino acid. Before the lookup the script uppercases the input and replaces every T with U, so DNA codons behave the same way: ATG and AUG both return Met (start), TGA and UGA both return STOP. The embedded table holds all 64 codons of the standard genetic code, NCBI translation table 1 — 61 sense codons plus the three stops UAA, UAG and UGA. Anything outside those 64 combinations returns an invalid-codon message rather than a guess. One codon per lookup, refreshed on every keystroke.
Almost all of the redundancy sits in the third base. GCN in any of its four forms codes alanine, CGN codes arginine, and the same four-fold family pattern holds for proline (CCN), threonine (ACN), valine (GUN), glycine (GGN) and the UCN block of serine, where the third letter changes nothing. Three amino acids get six codons each, split across two blocks that are not adjacent in the table: leucine (UUA, UUG plus the four CUN), serine (the four UCN plus AGU and AGC) and arginine (the four CGN plus AGA and AGG). At the other extreme, methionine and tryptophan have a single codon apiece, which makes AUG and UGG brittle positions — a single substitution in UGG produces UGA, a stop.
What the page leaves out matters as much as what it does. It handles one codon at a time: no reading frames, no ORF scanning, no reverse complement, no single-letter code and no full amino acid name. The table is the standard one and nothing else. Under the vertebrate mitochondrial code (NCBI table 2) UGA reads as tryptophan instead of stop, AUA reads as methionine instead of isoleucine, and AGA and AGG are stop codons — in every one of those cases this page will silently report the nuclear value. Input is not trimmed either, so pasting AUG with a trailing space returns invalid codon. And the start label rides along with AUG even when the AUG is an internal methionine.
Frequently asked questions
Can I paste a DNA codon instead of RNA?
Why is AUG shown as Met (start)?
Does the answer hold for every organism?
Related Tools
Binary Code Translator
Convert text to binary code (0s and 1s) and vice versa. Supports any ASCII character. Processed in the browser.
Excel Formula Translator (PT ↔ EN)
Translates Excel formulas between English and Portuguese function names, error values and argument separators, leaving strings and refs intact.
Markdown → AsciiDoc
Basic Markdown to AsciiDoc converter: headings (== ===), lists, inline code, code blocks --- and emphasis _italic_ *bold*.
Quoted-Printable
Encode and decode text in Quoted-Printable (RFC 2045), the format used in email to represent accents and special characters in plain ASCII.
L/100km to MPG Converter
Convert fuel economy from liters per 100 km to miles per gallon (MPG). Compare car efficiency between the European and US standards.
JSON ↔ XML Converter
Convert between JSON and XML preserving attributes via @attr and text via #text, with pretty-print of the resulting XML.