diff --git a/src/features/hotkey.tsx b/src/features/hotkey.tsx
index 05e878e..595344d 100644
--- a/src/features/hotkey.tsx
+++ b/src/features/hotkey.tsx
@@ -44,7 +44,7 @@ export type GenericHotkey = Replace<
     }
 >;
 
-const uppercaseNumbers = [")", "!", "@", "#", "$", "5", "^", "&", "*", "("];
+const uppercaseNumbers = [")", "!", "@", "#", "$", "%", "^", "&", "*", "("];
 
 export function createHotkey<T extends HotkeyOptions>(
     optionsFunc: OptionsFunc<T, BaseHotkey, GenericHotkey>