Convert CNY to LBP
Chinese Yuan → Lebanese Pound
1 CNY = 13,328.381 LBP(1 LBP = 0.0000750279 CNY)
Currency converter
1 CNY =
13,328.381 LBP
CNY to LBP: last 30 days
Over the last 30 days, 1 CNY traded between 13,220.618 and 13,470.906 LBP, averaging 13,380.057 LBP. The CNY/LBP rate is up 0.73% since 2026-08-29.
- 30-day high
- 13,470.906
- 2026-09-23
- 30-day low
- 13,220.618
- 2026-09-03
- 30-day average
- 13,380.057
- Days with data: 30
- 30-day change
- +0.73%
- since 2026-08-29
13,470.906
13,220.6182026-08-29 → 2026-09-27
| Date | 1 CNY in LBP | Daily change |
|---|---|---|
| 2026-09-27 | 13,328.381 | 0.00% |
| 2026-09-26 | 13,328.381 | -0.43% |
| 2026-09-25 | 13,385.412 | +0.13% |
| 2026-09-24 | 13,367.785 | -0.77% |
| 2026-09-23 | 13,470.906 | +0.57% |
| 2026-09-22 | 13,394.24 | +0.09% |
| 2026-09-21 | 13,381.684 | -0.50% |
| 2026-09-20 | 13,449.416 | +0.23% |
| 2026-09-19 | 13,418.548 | +0.36% |
| 2026-09-18 | 13,370.456 | -0.68% |
| 2026-09-17 | 13,461.843 | +0.80% |
| 2026-09-16 | 13,355.139 | -0.38% |
| 2026-09-15 | 13,406.017 | +0.21% |
| 2026-09-14 | 13,377.743 | -0.17% |
| 2026-09-13 | 13,399.868 | -0.32% |
| Date | 1 CNY in LBP | Daily change |
|---|---|---|
| 2026-09-12 | 13,443.216 | +0.25% |
| 2026-09-11 | 13,409.857 | +0.31% |
| 2026-09-10 | 13,368.902 | -0.07% |
| 2026-09-09 | 13,378.352 | +0.02% |
| 2026-09-08 | 13,376.026 | +0.05% |
| 2026-09-07 | 13,368.968 | -0.26% |
| 2026-09-06 | 13,404.172 | -0.21% |
| 2026-09-05 | 13,432.081 | +0.30% |
| 2026-09-04 | 13,391.549 | +1.29% |
| 2026-09-03 | 13,220.618 | -1.09% |
| 2026-09-02 | 13,365.946 | +0.34% |
| 2026-09-01 | 13,321.16 | -0.66% |
| 2026-08-31 | 13,409.237 | +0.19% |
| 2026-08-30 | 13,383.507 | +1.14% |
| 2026-08-29 | 13,232.308 | — |
CNY to LBP conversion table
1 CNY13,328.381 LBP
5 CNY66,641.904 LBP
10 CNY133,283.81 LBP
25 CNY333,209.52 LBP
50 CNY666,419.04 LBP
100 CNY1,332,838.1 LBP
500 CNY6,664,190.4 LBP
1,000 CNY13,328,381 LBP
5,000 CNY66,641,904 LBP
10,000 CNY133,283,807 LBP
Get the CNY/LBP rate in your app
One GET request returns the latest CNY → LBP 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/CNY/LBP"fetch('https://rate-api.com/api/v1/pair/CNY/LBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} LBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/LBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} LBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/LBP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CNY = {$data['rate']} LBP\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "LBP"
},
"rate": 13328.3807,
"timestamp": 1790531403,
"date": "2026-09-27"
}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
LBP to CNYLebanese Pound → Chinese Yuan0.000075028Convert CNY to other currencies
Convert other currencies to LBP
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.