🍋
Menu
🍋 Privacy & Security

JWT Decoder

Decode and inspect JSON Web Tokens

Free Browser-only No sign-up Popular
chars words sentences lines

Results

Result

About JWT Decoder

Parse JWT tokens to inspect header, payload, and signature. Shows all standard claims with descriptions, expiration status, and algorithm information.

How It Works

JWTs are three Base64URL-encoded segments separated by dots. This tool decodes the header and payload segments and formats them as JSON. The signature segment is displayed as-is (verification requires the secret key).

Step by Step

  1. 1 1
  2. 2 .
  3. 3
  4. 4 P
  5. 5 a
  6. 6 s
  7. 7 t
  8. 8 e
  9. 9
  10. 10 a
  11. 11
  12. 12 J
  13. 13 W
  14. 14 T
  15. 15
  16. 16 t
  17. 17 o
  18. 18 k
  19. 19 e
  20. 20 n
  21. 21
  22. 22 (
  23. 23 h
  24. 24 e
  25. 25 a
  26. 26 d
  27. 27 e
  28. 28 r
  29. 29 .
  30. 30 p
  31. 31 a
  32. 32 y
  33. 33 l
  34. 34 o
  35. 35 a
  36. 36 d
  37. 37 .
  38. 38 s
  39. 39 i
  40. 40 g
  41. 41 n
  42. 42 a
  43. 43 t
  44. 44 u
  45. 45 r
  46. 46 e
  47. 47 )
  48. 48
  49. 49 2
  50. 50 .
  51. 51
  52. 52 V
  53. 53 i
  54. 54 e
  55. 55 w
  56. 56
  57. 57 d
  58. 58 e
  59. 59 c
  60. 60 o
  61. 61 d
  62. 62 e
  63. 63 d
  64. 64
  65. 65 h
  66. 66 e
  67. 67 a
  68. 68 d
  69. 69 e
  70. 70 r
  71. 71
  72. 72 (
  73. 73 a
  74. 74 l
  75. 75 g
  76. 76 o
  77. 77 r
  78. 78 i
  79. 79 t
  80. 80 h
  81. 81 m
  82. 82 ,
  83. 83
  84. 84 t
  85. 85 y
  86. 86 p
  87. 87 e
  88. 88 ,
  89. 89
  90. 90 k
  91. 91 e
  92. 92 y
  93. 93
  94. 94 I
  95. 95 D
  96. 96 )
  97. 97
  98. 98 3
  99. 99 .
  100. 100
  101. 101 I
  102. 102 n
  103. 103 s
  104. 104 p
  105. 105 e
  106. 106 c
  107. 107 t
  108. 108
  109. 109 p
  110. 110 a
  111. 111 y
  112. 112 l
  113. 113 o
  114. 114 a
  115. 115 d
  116. 116
  117. 117 c
  118. 118 l
  119. 119 a
  120. 120 i
  121. 121 m
  122. 122 s
  123. 123
  124. 124 w
  125. 125 i
  126. 126 t
  127. 127 h
  128. 128
  129. 129 e
  130. 130 x
  131. 131 p
  132. 132 l
  133. 133 a
  134. 134 n
  135. 135 a
  136. 136 t
  137. 137 i
  138. 138 o
  139. 139 n
  140. 140 s
  141. 141
  142. 142 4
  143. 143 .
  144. 144
  145. 145 C
  146. 146 h
  147. 147 e
  148. 148 c
  149. 149 k
  150. 150
  151. 151 e
  152. 152 x
  153. 153 p
  154. 154 i
  155. 155 r
  156. 156 a
  157. 157 t
  158. 158 i
  159. 159 o
  160. 160 n
  161. 161
  162. 162 s
  163. 163 t
  164. 164 a
  165. 165 t
  166. 166 u
  167. 167 s
  168. 168
  169. 169 a
  170. 170 n
  171. 171 d
  172. 172
  173. 173 t
  174. 174 i
  175. 175 m
  176. 176 i
  177. 177 n
  178. 178 g

Tips

  • JWTs are signed but NOT encrypted — anyone can read the payload
  • Always validate JWTs server-side; client decoding is for inspection only
  • The 'exp' claim is Unix timestamp — this tool converts it to readable dates

Frequently Asked Questions

Does this tool verify the signature?
No. Signature verification requires the secret key or public key, which should never be shared client-side. This tool only decodes and displays the token contents.
What are standard JWT claims?
iss (issuer), sub (subject), aud (audience), exp (expiration), nbf (not before), iat (issued at), jti (JWT ID). All are optional per RFC 7519.