تخطّى للمحتوى
مبتدئ 5 min كارت مرجعي

دليل ترميز مكعب روبيك

اتعلّم لغة المكعب. افهم يعني إيه R وU وL وD وF وB.

علشان تقرا الخوارزميات وتحل المكعب، لازم تفهم الترميز القياسي. كل حرف بيشير لوش من أوش المكعب وإزاي تلفّه.

Hold the cube the same way every time

Before any letter means anything, agree on how you are holding the cube. Pick up the cube with one colour on top (this becomes U, Up) and one colour facing you (this becomes F, Front). The other four faces fall into place: the face on your right is R, on your left L, away from you B (Back), and underneath D (Down). Hold it like this and the six letters never change meaning, no matter how scrambled the cube is.

The standard view: U on top, F toward you, R on your right. Every algorithm assumes you are holding the cube this way.

الحركات الأساسية

الحرف لوحده معناه لفّة 90 درجة مع عقارب الساعة. الحرف ورا الفاصلة العليا (زي R') معناه لفّة 90 درجة عكس عقارب الساعة. الحرف ورا '2' (زي R2) معناه لفّة 180 درجة.

R
لفّ الوش اليمين مع عقارب الساعة.
R' عكس عقارب الساعة
R2 180°
L
لفّ الوش الشمال مع عقارب الساعة.
L' عكس عقارب الساعة
L2 180°
U
لفّ الوش اللي فوق مع عقارب الساعة.
U' عكس عقارب الساعة
U2 180°
D
لفّ الوش اللي تحت مع عقارب الساعة.
D' عكس عقارب الساعة
D2 180°
F
لفّ الوش الأمامي مع عقارب الساعة.
F' عكس عقارب الساعة
F2 180°
B
لفّ الوش الخلفي مع عقارب الساعة.
B' عكس عقارب الساعة
B2 180°

المُعدِّلات

R
من غير مُعدِّل
90 درجة مع عقارب الساعة
R'
عكس عقارب الساعة (فاصلة عليا) — زي R'
90 درجة عكس عقارب الساعة
R2
لفّة 180 درجة — زي R2
180 درجة (أي اتجاه)

A single R turn, looping. Watch the top-right edge swing away from you — that is clockwise.

Read a real algorithm

Reading an algorithm is just two questions, one move at a time: which layer (the letter) and how does it turn (the symbol). Nothing more. Let's decode the most famous beginner trigger on the cube — the Sune, named by Swedish speedcuber Lars Petrus. It twists three corners and reads like this:

Watch it run, then read the seven tokens left to right against the list.

  1. R — no symbol, so turn the right layer 90° clockwise.
  2. U — no symbol, turn the up layer clockwise.
  3. R' — the prime means turn the right layer 90° counter-clockwise.
  4. U — up layer clockwise again.
  5. R — right layer clockwise.
  6. U2 — the 2 means a 180° turn of the up layer.
  7. R' — right layer counter-clockwise to finish.

Naming pieces and slots

The same six letters name the pieces too, by listing the faces a piece touches. An edge touches two faces (the edge between U and F is UF); a corner touches three (the corner of U, R and F is URF). For a piece, order doesn't matter — FR and RF are the same edge. But corner names are read clockwise, so URF, RFU and FUR all name the same corner. When you need to talk about a single sticker, the first letter is the face you are looking at: the U-sticker of that corner leads with U.

UF edge — touches 2 faces (order doesn't matter)
URF corner — touches 3 faces, read clockwise

الحركات العريضة

الحرف الصغير أو لاحقة 'w' معناها إنك تحرّك الوش ده مع الطبقة الداخلية اللي جنبه مع بعض.

Rw الوش اليمين + الطبقة الوسطى (زي r).
Uw الوش اللي فوق + الطبقة التانية (زي u).

حركات الشرايح

طبقات داخلية بس، من غير ما تلمس أي وش خارجي.

M الطبقة الوسطى، بنفس اتجاه L.
E الطبقة الاستوائية، بنفس اتجاه D.
S الطبقة القايمة، بنفس اتجاه F.

لفّات المكعب

لفّ المكعب كله من غير ما تلفّ أي وش.

x لفّ المكعب كله على محور R (زي حركة R).
y لفّ المكعب كله على محور U (زي حركة U).
z لفّ المكعب كله على محور F (زي حركة F).

The three notation mix-ups everyone hits

  • M “looks backwards.” The middle slice M follows the L face, not R — so an M turn goes the opposite way to what you'd expect from R. Judge slice direction by the left face.
  • Lowercase isn't a secret move. On a 3×3, u and Uw are the same thing (a wide turn). It only changes meaning on bigger cubes.
  • A double turn has no “wrong” direction. R2 and R2' end in the same state; the prime only tells your hands which way to spin.