ISO 8583 Parser
Free · 速查 · 约 8 分钟Reference · ~8 min read

ISO 8583 常见字段速查ISO 8583 Field Quick Reference

128 个数据域,实际最常打交道的就十几个。这份速查用大白话讲清每个高频域是什么、里面装什么,配合解析工具边看报文边查最顺。 There are 128 data elements, but you deal with roughly a dozen day to day. This quick reference explains each high-frequency DE in plain language — best used alongside the parser tool while reading a message.

高频数据域High-frequency data elements

DE名称Name通俗解释Plain meaning
DE2PAN主账号,就是卡号Primary account number — the card number
DE3处理码Processing code交易性质:前2位交易类型(00消费/01取现…),中2/后2位借贷账户Nature of txn: first 2 digits = type (00 purchase/01 cash…), then from/to accounts
DE4交易金额Transaction amount以货币最小单位表示(如分),无小数点,前面补零In the currency's minor units (e.g. cents), no decimal point, zero-padded
DE7传输日期时间Transmission date/timeMMDDhhmmss(GMT)MMDDhhmmss (GMT)
DE11STAN系统跟踪号,当日唯一,用于对账/查询/冲正匹配System Trace Audit Number — unique within a day; matches reversals/lookups
DE12 / 13本地时间 / 日期Local time / date受理方本地 hhmmss / MMDDAcquirer local hhmmss / MMDD
DE14卡有效期Expiration dateYYMMYYMM
DE18MCC商户类别码(如 5814=快餐)Merchant Category Code (e.g. 5814 = fast food)
DE22POS 输入方式POS entry mode卡数据怎么读的:磁条/芯片/非接/手输How the card was read: magstripe/chip/contactless/manual
DE25POS 条件码POS condition code卡在场/不在场/MOTO 等Card-present / not-present / MOTO, etc.
DE37RRN检索参考号,跨系统追踪同一笔,退款/查询常用Retrieval Reference Number — tracks the same txn across systems
DE38授权码Auth code批准时发卡行返回的批准号Approval code returned by the issuer
DE39响应码Response code交易结果:00=批准,其余为拒绝原因(见大全)Result: 00=approved, else decline reason (full list)
DE41 / 42终端号 / 商户号Terminal ID / Merchant ID受理终端与商户的标识Identifiers of the accepting terminal and merchant
DE43商户名称/地点Card acceptor name/location商户名 + 城市 + 国家Merchant name + city + country
DE49交易货币码Currency codeISO 4217 数字码(决定小数位数)ISO 4217 numeric (sets the decimal places)
DE52PIN Block加密后的 PIN 数据Encrypted PIN data
DE55EMV / ICC芯片卡数据,TLV 格式(ARQC/TVR 等,术语表)Chip-card data in TLV (ARQC/TVR…, glossary)
DE64 / 128MAC报文鉴别码,校验报文没被篡改Message Authentication Code — integrity/anti-tamper
关于金额:DE4 是"最小单位"整数。比如 000000001000 在 SGD(2 位小数)= 10.00,在 JPY(0 位小数)= 1000。所以换算金额一定要结合 DE49 货币码看小数位。About amounts: DE4 is an integer in minor units. 000000001000 is 10.00 in SGD (2 decimals) but 1000 in JPY (0 decimals). Always convert using DE49's decimal count.

👉 打开解析工具粘贴报文,这些域会自动逐个列出并给通俗解释。相关:ISO 8583 入门DE39 响应码大全👉 Paste a message into the parser tool and these DEs are listed automatically with plain-language notes. Related: ISO 8583 basics, DE39 response codes.