加密與安全
加密、安全和随機標识類在線工具。
按指定长度和字符集生成随機字符串,可用於临时令牌、测试密碼和標识符。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Crypto/TokenGenerator.cshtmlTool文本哈希計算对文本計算 MD5、SHA1、SHA256、SHA384、SHA512、SHA3 和 RIPEMD160 等哈希值。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Crypto/HashText.cshtmlToolBcrypt 哈希使用 bcrypt 对文本进行哈希,并可與已有 bcrypt 哈希值进行校验。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Crypto/Bcrypt.cshtmlToolUUID 生成器生成 UUID v4 或 Nil UUID,适合测试數據、临时標识和分布式唯一 ID。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Crypto/UuidGenerator.cshtmlToolULID 生成器生成可按时間排序的 ULID,适合日志、事件和數據庫標识符。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Crypto/UlidGenerator.cshtmlTool文本加密/解密使用 AES、TripleDES、RC4 或 Rabbit 等算法对文本进行加密和解密。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Crypto/Encryption.cshtmlToolBIP39 助记詞生成器生成 BIP39 助记詞短語,便於学习和测试助记詞相關流程。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Crypto/Bip39Generator.cshtmlToolHMAC 生成器使用密钥和指定哈希算法生成 HMAC 消息认证碼。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Crypto/HmacGenerator.cshtmlToolRSA 密钥对生成器在浏覽器中生成 RSA 私钥和公钥,并以 PEM 格式輸出。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Crypto/RsaKeyPairGenerator.cshtmlTool密碼强度分析器估算密碼长度、字符類别、熵值和离線暴力破解所需时間。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Crypto/PasswordStrengthAnalyser.cshtmlToolPDF 簽名檢查器檢查 PDF 文件中是否存在簽名相關結构標记,辅助判断文件是否可能带簽名。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Crypto/PdfSignatureChecker.cshtml轉換器
格式、文本、日期和數值轉換工具。
在时間戳、本地时間、ISO 时間和 UTC 时間之間快速轉換。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/DateConverter.cshtmlTool整數进制轉換器在二进制、八进制、十进制、十六进制和 36 进制之間轉換整數。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/BaseConverter.cshtmlTool罗马數字轉換器將阿拉伯數字轉換為罗马數字,或將罗马數字解析為普通數字。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/RomanNumeralConverter.cshtmlToolBase64 字符串编解碼將普通文本编碼為 Base64,或將 Base64 解碼回文本。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/Base64StringConverter.cshtmlToolBase64 文件轉換器將上传的文件轉換為 Base64 Data URL,便於嵌入或调试。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/Base64FileConverter.cshtmlTool颜色格式轉換器在 Hex、RGB 和 HSL 等常见颜色格式之間轉換。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/ColorConverter.cshtmlTool命名格式轉換器將文本轉換為 camelCase、PascalCase、snake_case、kebab-case 等格式。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/CaseConverter.cshtmlTool文本轉北约音標字母把文本轉換為北约音標字母表,适合口头拼讀和信息确认。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/TextToNatoAlphabet.cshtmlTool文本與 ASCII 二进制互轉將文本轉換為 ASCII 二进制表示,或把二进制內容解碼為文本。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/TextToBinary.cshtmlTool文本與 Unicode 互轉將文本轉換為 Unicode 轉义形式,或把 Unicode 轉义解析回文本。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/TextToUnicode.cshtmlToolYAML 轉 JSON將 YAML 內容解析并轉換為格式化 JSON。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/YamlToJsonConverter.cshtmlToolYAML 轉 TOML將 YAML 配置轉換為 TOML 格式。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/YamlToToml.cshtmlToolJSON 轉 YAML將 JSON 內容解析并轉換為 YAML。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/JsonToYamlConverter.cshtmlToolJSON 轉 TOML將 JSON 对象轉換為 TOML 配置格式。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/JsonToToml.cshtmlTool列表轉換器对多行列表执行排序、反轉、去重、大小写轉換和 CSV 行轉換等操作。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/ListConverter.cshtmlToolTOML 轉 JSON解析 TOML 內容并轉換為格式化 JSON。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/TomlToJson.cshtmlToolTOML 轉 YAML解析 TOML 內容并轉換為 YAML。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/TomlToYaml.cshtmlToolXML 轉 JSON解析 XML 內容并轉換為 JSON 結构。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/XmlToJson.cshtmlToolJSON 轉 XML將 JSON 对象轉換為 XML 字符串。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/JsonToXml.cshtmlToolMarkdown 轉 HTML將 Markdown 文本轉換為 HTML,并提供即时预覽。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/MarkdownToHtml.cshtmlTool时間戳轉換工具在时間戳和常见日期格式之間互轉,支持秒、毫秒和格式化顯示。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/Timestamp.cshtml网頁工具
Web 開發、URL、頁面元信息和调试工具。
对 URL 或 URL 组件进行百分号编碼和解碼。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/UrlEncoder.cshtmlToolHTML 實體轉义对 HTML 特殊字符进行轉义或反轉义。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/HtmlEntities.cshtmlToolURL 解析器解析 URL 的协议、主機、端口、路径、查询参數和片段等组成部分。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/UrlParser.cshtmlTool設備信息查看当前浏覽器、屏幕、語言、在線状态和视口等設備信息。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/DeviceInformation.cshtmlToolBasic Auth 生成器根據用户名和密碼生成 HTTP Basic Authorization 請求头。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/BasicAuthGenerator.cshtmlToolOpen Graph Meta 生成器生成网頁標題、描述、Open Graph 和 Twitter Card 等 Meta 標簽。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/OgMetaGenerator.cshtmlToolOTP 动态验证碼生成器基於 Base32 密钥生成 TOTP 动态验证碼,并顯示剩余有效时間。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/OtpGenerator.cshtmlToolMIME 類型查询根據文件扩展名查询 MIME 類型,或根據 MIME 類型反查常见扩展名。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/MimeTypes.cshtmlToolJWT 解析器解析 JWT 的 Header、Payload 和 Signature,便於调试令牌內容。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/JwtParser.cshtmlTool鍵盘按鍵碼查询按下任意鍵后顯示 key、code、keyCode 和修饰鍵状态。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/KeycodeInfo.cshtmlToolURL Slug 生成器把標題或短語轉換為适合 URL、文件名和锚点 ID 的 slug。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/UrlSlugGenerator.cshtmlToolHTML 所见即所得编辑器在線编辑富文本內容,并實时查看生成的 HTML。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/HtmlWysiwygEditor.cshtmlToolUser-Agent 解析器从 User-Agent 字符串中识别浏覽器、系统、設備類型等信息。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/UserAgentParser.cshtmlToolHTTP 状态碼查询查询常见 HTTP 状态碼及其含义。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/HttpStatusCodes.cshtmlToolJSON 差异比较比较两個 JSON 对象,并列出字段级差异。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/JsonDiff.cshtmlToolSafelink 解碼器从 Outlook Safelink 鏈接中提取真實目標地址。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/SafelinkDecoder.cshtmlTool標題轉 URL 别名將中文標題翻译并轉換成适合文章鏈接和 SEO 的 slug。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/SlugifyString.cshtml圖像與视頻
圖片、二維碼、圖標和摄像头工具。
為文本或鏈接生成二維碼,并支持前景色和背景色自定义。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/ImagesAndVideos/QrcodeGenerator.cshtmlToolWiFi 二維碼生成器根據 WiFi 名称、密碼和加密方式生成快速连接二維碼。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/ImagesAndVideos/WifiQrcodeGenerator.cshtmlToolSVG 占位圖生成器按尺寸、颜色和文本生成 SVG 占位圖。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/ImagesAndVideos/SvgPlaceholderGenerator.cshtmlTool摄像头拍照工具调用浏覽器摄像头进行预覽,并可截取当前画面。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/ImagesAndVideos/CameraRecorder.cshtmlToolIcon 圖標轉換器將圖片轉換為 ICO 圖標,或按多尺寸導出圖標压缩包。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/ImagesAndVideos/IconConverter.cshtmlTool挪车碼生成器根據手機号生成可扫碼联系车主的临时挪车二維碼。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/ImagesAndVideos/NuoChe.cshtml開發工具
日常開發格式化、正则、权限和命令辅助工具。
整理常用 Git 命令,便於快速查閱提交、分支、变基和暂存操作。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/GitMemo.cshtmlTool随機端口生成器生成 1024 到 65535 范围內的随機端口号。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/RandomPortGenerator.cshtmlToolCrontab 表达式生成器组合分钟、小时、日期、月份和星期字段,生成 crontab 表达式。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/CrontabGenerator.cshtmlToolJSON 格式化將 JSON 字符串格式化為易讀的缩进結构。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/JsonPrettify.cshtmlToolJSON 压缩移除 JSON 中多余空白,生成紧凑字符串。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/JsonMinify.cshtmlToolJSON 轉 CSV把对象數组形式的 JSON 轉換為 CSV 文本。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/JsonToCsv.cshtmlToolSQL 格式化对 SQL 查询进行基础換行和缩进,提升可讀性。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/SqlPrettify.cshtmlToolChmod 权限計算器選择讀、写、执行权限,生成八进制和符号形式的 chmod 命令。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/ChmodCalculator.cshtmlToolDocker Run 轉 Compose把常见 docker run 参數轉換為 docker compose 服务片段。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/DockerRunToDockerComposeConverter.cshtmlToolXML 格式化將 XML 字符串整理為缩进后的易讀格式。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/XmlFormatter.cshtmlToolYAML 格式化解析并重新輸出 YAML,使結构更清晰。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/YamlPrettify.cshtmlTool邮箱地址规范化对邮箱地址做小写、去標簽等规范化处理,支持 Gmail 点号规则。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/EmailNormalizer.cshtmlTool正则表达式测试器輸入正则表达式、標志和样本文本,查看匹配結果。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/RegexTester.cshtmlTool正则表达式速查表列出常用正则語法、字符類、量詞和分组写法。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/RegexMemo.cshtml网络工具
IP、MAC 和网络地址处理工具。
根據 IPv4/CIDR 計算子网掩碼、网络地址、广播地址和主機范围。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Network/Ipv4SubnetCalculator.cshtmlToolIPv4 地址轉換器將 IPv4 地址轉換為十进制、十六进制、二进制和 IPv6 映射形式。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Network/Ipv4AddressConverter.cshtmlToolIPv4 范围計算器根據起止 IPv4 地址計算地址數量和覆盖该范围的 CIDR。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Network/Ipv4RangeExpander.cshtmlToolMAC 地址厂商查询根據 MAC 地址查询設備厂商信息。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Network/MacAddressLookup.cshtmlToolMAC 地址生成器按前缀和數量生成随機 MAC 地址。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Network/MacAddressGenerator.cshtmlToolIPv6 ULA 生成器生成符合 RFC4193 的本地唯一 IPv6 地址前缀。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Network/Ipv6UlaGenerator.cshtml數学工具
計算、百分比、複利和 ETA 工具。
計算包含常见 Math 函數的數学表达式。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Math/MathEvaluator.cshtmlToolETA 预計完成时間計算器根據已完成量、总量和已耗时估算剩余时間與完成时刻。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Math/EtaCalculator.cshtmlTool百分比計算器計算占比、百分比对應值以及两個數之間的变化百分比。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Math/PercentageCalculator.cshtmlTool複利計算器按年、月、日複利方式計算本金、利率和收益变化。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Math/CompoundInterestCalculator.cshtml計量工具
計时、温度和性能测量工具。
提供簡单的開始、停止和重置計时功能。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Measurement/Chronometer.cshtmlTool温度轉換器在摄氏度、华氏度、開尔文和兰氏度之間轉換。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Measurement/TemperatureConverter.cshtmlTool基准测试工具在当前浏覽器中多次运行 JavaScript 片段,统計最小、最大和平均耗时。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Measurement/BenchmarkBuilder.cshtml文本工具
文本生成、统計、对比和处理工具。
按段落數量生成 Lorem ipsum 占位文本。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Text/LoremIpsumGenerator.cshtmlTool文本统計统計文本字符數、字节數、詞數、行數、句子數和段落數。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Text/TextStatistics.cshtmlToolEmoji 選择器快速選择并複制常用 Emoji 表情。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Text/EmojiPicker.cshtmlTool字符串脱敏工具隐藏字符串中間部分,便於分享令牌、账号或其他敏感片段。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Text/StringObfuscator.cshtmlTool文本差异比较逐行比较两段文本,顯示新增和删除內容。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Text/TextDiff.cshtmlTool數字缩写生成器把 internationalization 轉為 i18n 這類數字缩写形式。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Text/NumeronymGenerator.cshtmlToolASCII 文本绘制器把輸入文本轉換為簡单的 ASCII 风格排列。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Text/AsciiTextDrawer.cshtml數據工具
电话、IBAN 等結构化數據工具。