Convert LBP to CNY
Lebanese Pound → Chinese Yuan
1 LBP = 0.0000747082 CNY(1 CNY = 13,385.412 LBP)
Currency converter
1 LBP =
0.000074708 CNY
LBP to CNY: last 30 days
Over the last 30 days, 1 LBP traded between 0.000074234 and 0.000075639 CNY, averaging 0.000074727 CNY. The LBP/CNY rate is down 0.34% since 2026-08-28.
- 30-day high
- 0.000075639
- 2026-09-03
- 30-day low
- 0.000074234
- 2026-09-23
- 30-day average
- 0.000074727
- Days with data: 30
- 30-day change
- -0.34%
- since 2026-08-28
0.000075639
0.0000742342026-08-28 → 2026-09-26
| Date | 1 LBP in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 0.000074708 | 0.00% |
| 2026-09-25 | 0.000074708 | -0.13% |
| 2026-09-24 | 0.000074807 | +0.77% |
| 2026-09-23 | 0.000074234 | -0.57% |
| 2026-09-22 | 0.000074659 | -0.09% |
| 2026-09-21 | 0.000074729 | +0.51% |
| 2026-09-20 | 0.000074353 | -0.23% |
| 2026-09-19 | 0.000074524 | -0.36% |
| 2026-09-18 | 0.000074792 | +0.68% |
| 2026-09-17 | 0.000074284 | -0.79% |
| 2026-09-16 | 0.000074878 | +0.38% |
| 2026-09-15 | 0.000074593 | -0.21% |
| 2026-09-14 | 0.000074751 | +0.17% |
| 2026-09-13 | 0.000074628 | +0.32% |
| 2026-09-12 | 0.000074387 | -0.25% |
| Date | 1 LBP in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 0.000074572 | -0.31% |
| 2026-09-10 | 0.0000748 | +0.07% |
| 2026-09-09 | 0.000074748 | -0.02% |
| 2026-09-08 | 0.000074761 | -0.05% |
| 2026-09-07 | 0.0000748 | +0.26% |
| 2026-09-06 | 0.000074604 | +0.21% |
| 2026-09-05 | 0.000074449 | -0.30% |
| 2026-09-04 | 0.000074674 | -1.28% |
| 2026-09-03 | 0.000075639 | +1.10% |
| 2026-09-02 | 0.000074817 | -0.34% |
| 2026-09-01 | 0.000075069 | +0.66% |
| 2026-08-31 | 0.000074575 | -0.19% |
| 2026-08-30 | 0.000074719 | -1.13% |
| 2026-08-29 | 0.000075573 | +0.81% |
| 2026-08-28 | 0.000074963 | — |
LBP to CNY conversion table
1 LBP0.000074708 CNY
5 LBP0.00037354 CNY
10 LBP0.00074708 CNY
25 LBP0.0018677 CNY
50 LBP0.0037354 CNY
100 LBP0.0074708 CNY
500 LBP0.037354 CNY
1,000 LBP0.074708 CNY
5,000 LBP0.37354 CNY
10,000 LBP0.74708 CNY
Get the LBP/CNY rate in your app
One GET request returns the latest LBP → CNY 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/LBP/CNY?precision=6"fetch('https://rate-api.com/api/v1/pair/LBP/CNY?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 LBP = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/LBP/CNY?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 LBP = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/LBP/CNY?precision=6');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 LBP = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "LBP",
"to": "CNY"
},
"rate": 7.5e-5,
"timestamp": 1790435062,
"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
CNY to LBPChinese Yuan → Lebanese Pound13,385.412Convert LBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.