?????????????????????????????????????????????
???????????? (Yuan, ???) ??????????????????????????????????????????????????????????????????????????????????????????????????? ?????????????????????????????????????????????????????????????????? ???????????????????????????????????? (Renminbi, RMB, ?????????) ?????????????????? "???????????????????????????????????????????????????" ???????????????????????? ISO 4217 ????????? CNY (Chinese Yuan) ??????????????????????????? ?? ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? 5 ???????????????????????????????????? SWIFT
1 ???????????? = 10 ?????????????????? (???, jiao) = 100 ???????????? (???, fen) ???????????????????????????????????????????????????????????? ???????????? ????????? "?????????" (???, kuai) ???????????????????????? ?????????????????? ????????? "????????????" (???, mao) ?????????????????????????????????????????? 1, 5, 10, 20, 50, 100 ????????????
People's Bank of China (PBOC, ???????????????????????????????????????) ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ?????????????????????????????? managed floating exchange rate ????????? PBOC ??????????????? daily fixing rate ??????????????????????????????????????????????????????????????????????????? ??2% ????????? fixing rate ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
???????????????????????????????????????????????????????????????????????????
???????????????????????????????????????????????????????????????
# === Chinese Yuan History & System ===
cat > yuan_history.yaml << 'EOF'
yuan_history:
ancient:
- period: "???????????? 221 BC"
currency: "????????????????????????????????????, ???????????????????????????"
note: "???????????????????????????????????????????????????????????????????????????"
- period: "221 BC - 1911"
currency: "?????????, ????????????, ?????????????????? (????????????????????????????????????)"
note: "Qin Shi Huang ?????????????????????????????????????????????????????????"
modern:
- period: "1948"
event: "????????????????????? People's Bank of China, ????????? RMB ??????????????????"
- period: "1955"
event: "RMB ?????????????????? 2, redenomination 10000:1"
- period: "1978"
event: "????????????????????????????????????????????? (Deng Xiaoping)"
- period: "1994"
event: "??????????????????????????????????????????????????????, peg ????????? USD ????????? 8.28"
- period: "2005"
event: "????????????????????????????????? managed float, ?????????????????????????????????????????? 8.28 ???????????? 7.x"
- period: "2015"
event: "IMF ??????????????????????????? SDR basket (10.92%)"
- period: "2020"
event: "?????????????????????????????? Digital Yuan (e-CNY)"
- period: "2024"
event: "???????????? ~7.2 ????????? USD, Digital Yuan ??????????????????????????? 26 ???????????????"
exchange_rate_system:
type: "Managed Floating"
mechanism:
- "PBOC ??????????????? daily fixing rate ????????????????????? 09:15"
- "Trading band: ??2% ????????? fixing rate"
- "PBOC intervention ???????????? FX reserves ($3.2 trillion)"
onshore: "CNY (??????????????????????????? mainland China)"
offshore: "CNH (??????????????????????????? Hong Kong, Singapore)"
difference: "CNY/CNH ?????????????????????????????? 0.1-0.5% ????????? market sentiment"
EOF
echo "Yuan history documented"
???????????????????????????????????????????????????????????????????????????????????? Python
??????????????????????????????????????????????????????????????????????????????????????????
#!/usr/bin/env python3
# yuan_analysis.py ??? Yuan Exchange Rate Analysis
import json
import logging
import math
from typing import Dict, List
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger("yuan")
class YuanAnalyzer:
def __init__(self):
self.data = {}
def load_historical_rates(self):
"""Historical USD/CNY rates (year-end)"""
self.data = {
"USD_CNY": {
2010: 6.59, 2011: 6.30, 2012: 6.23, 2013: 6.05,
2014: 6.20, 2015: 6.49, 2016: 6.94, 2017: 6.51,
2018: 6.88, 2019: 6.96, 2020: 6.53, 2021: 6.37,
2022: 6.90, 2023: 7.10, 2024: 7.25,
},
"THB_CNY": {
2020: 4.68, 2021: 4.72, 2022: 4.96,
2023: 4.88, 2024: 5.05,
},
}
def annual_change(self, pair="USD_CNY"):
"""Calculate annual changes"""
rates = self.data.get(pair, {})
years = sorted(rates.keys())
changes = {}
for i in range(1, len(years)):
prev = rates[years[i-1]]
curr = rates[years[i]]
pct = round((curr - prev) / prev * 100, 2)
direction = "????????????????????????" if pct > 0 else "????????????????????????"
changes[years[i]] = {"rate": curr, "change_pct": pct, "direction": direction}
return changes
def convert(self, amount, from_currency, to_currency, rate):
"""Currency conversion"""
if from_currency == "CNY" and to_currency == "THB":
return round(amount * rate, 2)
elif from_currency == "THB" and to_currency == "CNY":
return round(amount / rate, 2)
elif from_currency == "USD" and to_currency == "CNY":
return round(amount * rate, 2)
elif from_currency == "CNY" and to_currency == "USD":
return round(amount / rate, 2)
return None
def trade_impact(self):
"""Yuan impact on Thai-China trade"""
return {
"bilateral_trade_2023": {
"total_usd_billion": 105.2,
"thai_exports_to_china": 34.8,
"thai_imports_from_china": 70.4,
"trade_deficit": -35.6,
},
"yuan_weak_impact": {
"description": "???????????????????????? ??? ?????????????????????????????????????????? ??? ????????????????????????????????????????????????",
"thai_imports": "??????????????????????????? (????????????????????????????????????????????????????????????)",
"thai_exports": "???????????? (???????????????????????????????????????????????????????????????????????????)",
"thai_tourism": "???????????????????????????????????????????????????????????? (?????????????????????????????????????????????????????????????????????????????????)",
},
"yuan_strong_impact": {
"description": "???????????????????????? ??? ????????????????????????????????????????????????",
"thai_imports": "????????????",
"thai_exports": "??????????????????????????? (?????????????????????????????????????????????????????????????????????)",
"thai_tourism": "???????????????????????????????????????????????????????????????????????????",
},
}
analyzer = YuanAnalyzer()
analyzer.load_historical_rates()
changes = analyzer.annual_change("USD_CNY")
print("USD/CNY Annual Changes (last 5 years):")
for year, info in list(changes.items())[-5:]:
print(f" {year}: {info['rate']} ({info['change_pct']:+.2f}%, {info['direction']})")
# Conversion examples
print(f"\nConversion Examples:")
print(f" 1,000 CNY = {analyzer.convert(1000, 'CNY', 'THB', 5.05)} THB")
print(f" 10,000 THB = {analyzer.convert(10000, 'THB', 'CNY', 5.05)} CNY")
print(f" 100 USD = {analyzer.convert(100, 'USD', 'CNY', 7.25)} CNY")
Digital Yuan (e-CNY)
?????????????????????????????????????????????????????????????????????????????????????????????
# === Digital Yuan (e-CNY) Overview ===
cat > digital_yuan.json << 'EOF'
{
"digital_yuan": {
"official_name": "Digital Currency Electronic Payment (DCEP)",
"short_name": "e-CNY",
"issuer": "People's Bank of China (PBOC)",
"launch_year": "2020 (pilot), ongoing rollout",
"technology": {
"type": "Central Bank Digital Currency (CBDC)",
"blockchain": "Not pure blockchain, centralized ledger",
"privacy": "Controllable anonymity (small transactions anonymous, large ones tracked)",
"offline": "Supports NFC offline payments"
},
"pilot_cities": [
"Shenzhen", "Suzhou", "Beijing", "Shanghai", "Chengdu",
"Changsha", "Hainan", "Xian", "Qingdao", "Dalian",
"Hangzhou", "Chongqing", "Guangzhou", "Fuzhou", "Xiamen"
],
"statistics_2024": {
"total_transactions": "7+ trillion CNY",
"wallets_opened": "260+ million",
"merchants": "5.6+ million",
"use_cases": [
"Retail payments (stores, restaurants)",
"Public transportation",
"Government subsidies distribution",
"Cross-border payments (Hong Kong, Thailand)",
"Salary payments (government employees)"
]
},
"vs_alipay_wechat": {
"similarity": "Mobile payment via QR code",
"difference": [
"e-CNY is legal tender (must be accepted)",
"Alipay/WeChat are private company platforms",
"e-CNY works offline (NFC)",
"e-CNY has no transaction fees",
"e-CNY directly issued by central bank"
]
},
"international_use": {
"mbridge": "Multi-CBDC Bridge project (China, Thailand, UAE, Hong Kong)",
"thailand_pilot": "BOT participated in mBridge cross-border payment test",
"impact": "Reduce USD dependency in cross-border trade"
}
}
}
EOF
python3 -c "
import json
with open('digital_yuan.json') as f:
data = json.load(f)
dy = data['digital_yuan']
print('Digital Yuan (e-CNY):')
print(f' Wallets: {dy[\"statistics_2024\"][\"wallets_opened\"]}')
print(f' Merchants: {dy[\"statistics_2024\"][\"merchants\"]}')
print(f' Transactions: {dy[\"statistics_2024\"][\"total_transactions\"]}')
print(f'\nUse Cases:')
for uc in dy['statistics_2024']['use_cases']:
print(f' - {uc}')
print(f'\nvs Alipay/WeChat:')
for diff in dy['vs_alipay_wechat']['difference'][:3]:
print(f' - {diff}')
"
echo "Digital Yuan overview complete"
?????????????????????????????????????????????????????????????????????????????????
????????????????????????????????????????????????????????????
#!/usr/bin/env python3
# yuan_global_trade.py ??? Yuan in Global Trade
import json
import logging
from typing import Dict, List
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger("trade")
class YuanGlobalTrade:
def __init__(self):
pass
def internationalization(self):
return {
"swift_ranking": {
"rank": 5,
"share_pct": 4.7,
"trend": "???????????????????????????????????? 1.1% (2015) ???????????? 4.7% (2024)",
"top_5": [
{"rank": 1, "currency": "USD", "share": 47.5},
{"rank": 2, "currency": "EUR", "share": 23.2},
{"rank": 3, "currency": "GBP", "share": 7.1},
{"rank": 4, "currency": "JPY", "share": 5.8},
{"rank": 5, "currency": "CNY", "share": 4.7},
],
},
"sdr_basket": {
"description": "IMF Special Drawing Rights basket",
"cny_weight": "12.28% (revised 2022)",
"significance": "????????????????????????????????? reserve currency",
},
"swap_agreements": {
"description": "PBOC ?????? currency swap agreements ????????? 40+ ??????????????????",
"total_value": "~4 trillion CNY",
"key_partners": ["Russia", "Saudi Arabia", "Brazil", "Argentina", "Thailand"],
"purpose": "????????????????????????????????? USD ?????????????????????????????????????????????",
},
"cips": {
"name": "Cross-border Interbank Payment System",
"description": "????????????????????????????????????????????????????????????????????????????????????????????? (????????????????????? SWIFT)",
"participants": "1,400+ ???????????????????????????????????????, 110+ ??????????????????",
"daily_volume": "~500 billion CNY",
},
"de_dollarization": {
"trend": "?????????????????????????????????????????????????????? CNY ????????? USD",
"examples": [
"Russia-China: ?????????????????????????????? CNY/RUB",
"Saudi Arabia: ???????????????????????? oil ???????????? CNY (Petroyuan)",
"Brazil: ?????????????????????????????? CNY ??????????????????",
"BRICS: ???????????????????????????????????????????????????",
],
},
}
trade = YuanGlobalTrade()
data = trade.internationalization()
print("Yuan Internationalization:")
print(f" SWIFT Ranking: #{data['swift_ranking']['rank']} ({data['swift_ranking']['share_pct']}%)")
print(f" SDR Weight: {data['sdr_basket']['cny_weight']}")
print(f" CIPS Participants: {data['cips']['participants']}")
print(f"\nSWIFT Top 5:")
for item in data["swift_ranking"]["top_5"]:
bar = "#" * int(item["share"] / 2)
print(f" {item['rank']}. {item['currency']}: {item['share']}% {bar}")
???????????????????????????????????????????????????????????????
????????????????????????????????????????????????-?????????
#!/usr/bin/env python3
# yuan_thailand.py ??? Yuan Impact on Thailand
import json
import logging
from typing import Dict
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger("thailand")
class YuanThailandImpact:
def __init__(self):
pass
def trade_relationship(self):
return {
"china_is_thailands": {
"top_trading_partner": "?????????????????? 1 (????????????????????? 15% ????????????????????????????????????)",
"top_import_source": "?????????????????? 1 (????????????????????????????????????????????????????????????, ?????????????????????????????????, ????????????????????????????????????)",
"top_tourist_source": "?????????????????? 1 (6+ ??????????????????/?????? ???????????? COVID)",
"top_investor": "?????????????????? 1 ????????? FDI applications (BOI)",
},
"yuan_acceptance_in_thailand": {
"currency_exchange": "?????????????????????????????????????????????, SuperRich, ?????????????????????????????????",
"payment": "????????? merchants ????????? Alipay, WeChat Pay",
"digital_yuan": "BOT ??????????????????????????? mBridge ????????? PBOC",
"direct_settlement": "?????????????????????????????????????????????????????????????????? CNY settlement",
},
"impact_scenarios": {
"yuan_depreciation_10pct": {
"thai_imports": "?????????????????????????????????????????? 10% ??? ?????????????????????????????????",
"thai_exports": "??????????????????????????????????????????????????????????????????????????? ??? ????????????????????????",
"tourism": "???????????????????????????????????????????????????????????? (?????????????????????????????????????????????)",
"competition": "???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????",
"overall": "???????????????????????? (trade deficit ???????????????????????????)",
},
"yuan_appreciation_10pct": {
"thai_imports": "???????????????????????????????????????????????? ??? ????????????????????????",
"thai_exports": "????????????????????????????????????????????????????????????????????? ??? ?????????????????????????????????",
"tourism": "??????????????????????????????????????????????????????????????? (????????????????????????????????????????????????????????????)",
"overall": "???????????????????????????",
},
},
}
impact = YuanThailandImpact()
data = impact.trade_relationship()
print("China-Thailand Economic Relationship:")
for key, val in data["china_is_thailands"].items():
print(f" {key}: {val}")
print("\nYuan Depreciation 10% Impact on Thailand:")
for key, val in data["impact_scenarios"]["yuan_depreciation_10pct"].items():
print(f" {key}: {val}")
FAQ ??????????????????????????????????????????
Q: ???????????? (Yuan) ????????? ???????????????????????????????????? (RMB) ???????????????????????????????????????????
A: ???????????????????????????????????? (Renminbi, RMB) ????????????????????????????????????????????? ?????????????????? "?????????" ?????????????????? ???????????? (Yuan) ????????????????????????????????? ?????????????????? "?????????" ???????????????????????????????????? ???????????????????????????????????????????????????????????????????????? ???????????? "100 ????????????" = "100 ????????????????????????????????????" ???????????????????????????????????????????????????????????? CNY (Chinese Yuan) ?????????????????? onshore rate ????????? CNH ?????????????????? offshore rate (Hong Kong) ???????????????????????? CNY ????????? CNH CNY ??????????????????????????? mainland China ?????? trading band ??2%, CNH ?????????????????????????????? China ????????????????????????????????????????????? ???????????????????????? CNY/CNH ?????????????????? market sentiment ????????? CNH ???????????????????????? CNY ??????????????????????????????????????????????????????????????????
Q: Digital Yuan ???????????????????????? USD ??????????????????????
A: ???????????????????????? (1-3 ??????) ????????????????????????????????? Digital Yuan ????????????????????????????????????????????????????????? cross-border ???????????????????????? ????????????????????? CNY ?????? global payments ?????????????????? (4.7%) ???????????????????????? (3-10 ??????) ??????????????????????????? ????????? mBridge ?????????????????? ???????????????????????? USD ??????????????????????????????????????????, ???????????????????????????????????? US sanctions ????????? e-CNY ????????? (Russia, Iran), trade settlement ???????????? CNY ??????????????????????????? ????????????????????? (10+ ??????) ??????????????? USD dominance ???????????????????????????????????? ???????????????????????? capital account liberalization ?????????????????? (??????????????? capital controls), trust ????????????????????????????????????????????????????????????????????????, deep liquid financial markets (bond, equity) USD ????????????????????????????????????????????????????????????????????????????????????????????? ????????? share ??????????????????????????? multi-polar currency system
Q: ???????????????????????????????????????????????????????????????????????????????????????????????????????
A: ???????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????? ???????????? K-CHINA, TMBCHEQ, KT-CHINA ?????????????????????????????????????????? A-shares/H-shares ???????????? fund manager ????????? ????????????????????????, ????????????????????????????????? (Dim Sum Bonds) ???????????????????????????????????? CNH ??????????????????????????? Hong Kong yield ????????????????????? US Treasury, ETF ????????? ???????????? FXI (iShares China), MCHI, KWEB ???????????????????????? broker ??????????????????????????????, ????????????????????????????????? CNY ??????????????????????????????????????????????????????????????????????????? CNY ????????? ????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????????? (regulation risk), ????????????????????????????????????????????? CNY/THB ??????????????????, Capital controls ???????????????????????? ??????????????? liquidity ????????????????????? USD assets
Q: ??????????????????????????????????????????????????????????????????????????? 2025?
A: ?????????????????????????????????????????????????????? (?????????????????????) Fed interest rates ????????????????????? PBOC ?????????????????????????????????????????? USD, ??????????????????????????????????????????????????????????????? (?????????????????????????????????????????????, ??????????????????????????????), Geopolitical tensions (US-China trade war), Capital outflows ????????????????????????????????????????????????????????? ??????????????????????????????????????????????????? (?????????????????????) PBOC ?????? reserves $3.2 trillion ?????????????????? intervention, Trade surplus ?????????????????? (China exports ?????????), De-dollarization demand ???????????????????????????????????????, Digital Yuan adoption ??????????????????????????? ???????????????????????? USD/CNY ?????????????????????????????? 7.0-7.5 ???????????? 2025 PBOC ???????????????????????????????????????????????? 7.5 ?????????????????????????????? confidence ???????????????????????????????????????????????????????????????????????????????????????????????????????????? exports
