Convert RUB to EGP
Russian Ruble → Egyptian Pound
1 RUB = 0.609088 EGP(1 EGP = 1.641798 RUB)
Currency converter
1 RUB =
0.60909 EGP
RUB to EGP: last 30 days
Over the last 30 days, 1 RUB traded between 0.58131 and 0.62002 EGP, averaging 0.60215 EGP. The RUB/EGP rate is up 3.62% since 2026-08-28.
- 30-day high
- 0.62002
- 2026-09-20
- 30-day low
- 0.58131
- 2026-08-29
- 30-day average
- 0.60215
- Days with data: 30
- 30-day change
- +3.62%
- since 2026-08-28
0.62002
0.581312026-08-28 → 2026-09-26
| Date | 1 RUB in EGP | Daily change |
|---|---|---|
| 2026-09-26 | 0.60909 | 0.00% |
| 2026-09-25 | 0.60909 | +0.50% |
| 2026-09-24 | 0.60605 | -1.05% |
| 2026-09-23 | 0.61245 | -1.19% |
| 2026-09-22 | 0.61981 | +0.23% |
| 2026-09-21 | 0.61837 | -0.27% |
| 2026-09-20 | 0.62002 | +0.22% |
| 2026-09-19 | 0.61865 | +0.29% |
| 2026-09-18 | 0.61687 | -0.46% |
| 2026-09-17 | 0.61972 | +0.54% |
| 2026-09-16 | 0.61642 | +0.75% |
| 2026-09-15 | 0.61182 | +0.68% |
| 2026-09-14 | 0.60766 | -0.28% |
| 2026-09-13 | 0.60937 | -0.14% |
| 2026-09-12 | 0.61022 | -0.25% |
| Date | 1 RUB in EGP | Daily change |
|---|---|---|
| 2026-09-11 | 0.61172 | +1.56% |
| 2026-09-10 | 0.6023 | +1.34% |
| 2026-09-09 | 0.59434 | +0.65% |
| 2026-09-08 | 0.5905 | +0.39% |
| 2026-09-07 | 0.58823 | -0.03% |
| 2026-09-06 | 0.5884 | -0.83% |
| 2026-09-05 | 0.59334 | +0.91% |
| 2026-09-04 | 0.588 | +0.53% |
| 2026-09-03 | 0.58488 | -0.26% |
| 2026-09-02 | 0.58638 | -0.60% |
| 2026-09-01 | 0.58991 | -0.04% |
| 2026-08-31 | 0.59017 | +1.47% |
| 2026-08-30 | 0.58163 | +0.05% |
| 2026-08-29 | 0.58131 | -1.10% |
| 2026-08-28 | 0.5878 | — |
RUB to EGP conversion table
1 RUB0.60909 EGP
5 RUB3.0454 EGP
10 RUB6.0909 EGP
25 RUB15.2272 EGP
50 RUB30.4544 EGP
100 RUB60.9088 EGP
500 RUB304.5442 EGP
1,000 RUB609.0885 EGP
5,000 RUB3,045.4423 EGP
10,000 RUB6,090.8847 EGP
Get the RUB/EGP rate in your app
One GET request returns the latest RUB → EGP rate as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/pair/RUB/EGP"fetch('https://rate-api.com/api/v1/pair/RUB/EGP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} EGP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/EGP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} EGP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/EGP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 RUB = {$data['rate']} EGP\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "EGP"
},
"rate": 0.6091,
"timestamp": 1790437898,
"date": "2026-09-26"
}Replace YOUR_API_KEY with a key from your dashboard. The same key also works in the URL path or an X-API-Key header.
Get your free API key
Free plan: 2,500 requests a month, no credit card. Upgrade any time for conversion, historical rates and higher limits.
Related conversions
EGP to RUBEgyptian Pound → Russian Ruble1.6418Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.