加密与安全
加密、安全和随机标识类在线工具。
按指定长度和字符集生成随机字符串,可用于临时令牌、测试密码和标识符。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Crypto/TokenGenerator.cshtml工具文本哈希计算对文本计算 MD5、SHA1、SHA256、SHA384、SHA512、SHA3 和 RIPEMD160 等哈希值。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Crypto/HashText.cshtml工具Bcrypt 哈希使用 bcrypt 对文本进行哈希,并可与已有 bcrypt 哈希值进行校验。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Crypto/Bcrypt.cshtml工具UUID 生成器生成 UUID v4 或 Nil UUID,适合测试数据、临时标识和分布式唯一 ID。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Crypto/UuidGenerator.cshtml工具ULID 生成器生成可按时间排序的 ULID,适合日志、事件和数据库标识符。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Crypto/UlidGenerator.cshtml工具文本加密/解密使用 AES、TripleDES、RC4 或 Rabbit 等算法对文本进行加密和解密。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Crypto/Encryption.cshtml工具BIP39 助记词生成器生成 BIP39 助记词短语,便于学习和测试助记词相关流程。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Crypto/Bip39Generator.cshtml工具HMAC 生成器使用密钥和指定哈希算法生成 HMAC 消息认证码。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Crypto/HmacGenerator.cshtml工具RSA 密钥对生成器在浏览器中生成 RSA 私钥和公钥,并以 PEM 格式输出。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Crypto/RsaKeyPairGenerator.cshtml工具密码强度分析器估算密码长度、字符类别、熵值和离线暴力破解所需时间。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Crypto/PasswordStrengthAnalyser.cshtml工具PDF 签名检查器检查 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.cshtml工具整数进制转换器在二进制、八进制、十进制、十六进制和 36 进制之间转换整数。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/BaseConverter.cshtml工具罗马数字转换器将阿拉伯数字转换为罗马数字,或将罗马数字解析为普通数字。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/RomanNumeralConverter.cshtml工具Base64 字符串编解码将普通文本编码为 Base64,或将 Base64 解码回文本。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/Base64StringConverter.cshtml工具Base64 文件转换器将上传的文件转换为 Base64 Data URL,便于嵌入或调试。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/Base64FileConverter.cshtml工具颜色格式转换器在 Hex、RGB 和 HSL 等常见颜色格式之间转换。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/ColorConverter.cshtml工具命名格式转换器将文本转换为 camelCase、PascalCase、snake_case、kebab-case 等格式。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/CaseConverter.cshtml工具文本转北约音标字母把文本转换为北约音标字母表,适合口头拼读和信息确认。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/TextToNatoAlphabet.cshtml工具文本与 ASCII 二进制互转将文本转换为 ASCII 二进制表示,或把二进制内容解码为文本。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/TextToBinary.cshtml工具文本与 Unicode 互转将文本转换为 Unicode 转义形式,或把 Unicode 转义解析回文本。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/TextToUnicode.cshtml工具YAML 转 JSON将 YAML 内容解析并转换为格式化 JSON。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/YamlToJsonConverter.cshtml工具YAML 转 TOML将 YAML 配置转换为 TOML 格式。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/YamlToToml.cshtml工具JSON 转 YAML将 JSON 内容解析并转换为 YAML。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/JsonToYamlConverter.cshtml工具JSON 转 TOML将 JSON 对象转换为 TOML 配置格式。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/JsonToToml.cshtml工具列表转换器对多行列表执行排序、反转、去重、大小写转换和 CSV 行转换等操作。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/ListConverter.cshtml工具TOML 转 JSON解析 TOML 内容并转换为格式化 JSON。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/TomlToJson.cshtml工具TOML 转 YAML解析 TOML 内容并转换为 YAML。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/TomlToYaml.cshtml工具XML 转 JSON解析 XML 内容并转换为 JSON 结构。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/XmlToJson.cshtml工具JSON 转 XML将 JSON 对象转换为 XML 字符串。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/JsonToXml.cshtml工具Markdown 转 HTML将 Markdown 文本转换为 HTML,并提供即时预览。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Converter/MarkdownToHtml.cshtml工具时间戳转换工具在时间戳和常见日期格式之间互转,支持秒、毫秒和格式化显示。
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.cshtml工具HTML 实体转义对 HTML 特殊字符进行转义或反转义。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/HtmlEntities.cshtml工具URL 解析器解析 URL 的协议、主机、端口、路径、查询参数和片段等组成部分。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/UrlParser.cshtml工具设备信息查看当前浏览器、屏幕、语言、在线状态和视口等设备信息。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/DeviceInformation.cshtml工具Basic Auth 生成器根据用户名和密码生成 HTTP Basic Authorization 请求头。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/BasicAuthGenerator.cshtml工具Open Graph Meta 生成器生成网页标题、描述、Open Graph 和 Twitter Card 等 Meta 标签。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/OgMetaGenerator.cshtml工具OTP 动态验证码生成器基于 Base32 密钥生成 TOTP 动态验证码,并显示剩余有效时间。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/OtpGenerator.cshtml工具MIME 类型查询根据文件扩展名查询 MIME 类型,或根据 MIME 类型反查常见扩展名。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/MimeTypes.cshtml工具JWT 解析器解析 JWT 的 Header、Payload 和 Signature,便于调试令牌内容。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/JwtParser.cshtml工具键盘按键码查询按下任意键后显示 key、code、keyCode 和修饰键状态。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/KeycodeInfo.cshtml工具URL Slug 生成器把标题或短语转换为适合 URL、文件名和锚点 ID 的 slug。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/UrlSlugGenerator.cshtml工具HTML 所见即所得编辑器在线编辑富文本内容,并实时查看生成的 HTML。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/HtmlWysiwygEditor.cshtml工具User-Agent 解析器从 User-Agent 字符串中识别浏览器、系统、设备类型等信息。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/UserAgentParser.cshtml工具HTTP 状态码查询查询常见 HTTP 状态码及其含义。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/HttpStatusCodes.cshtml工具JSON 差异比较比较两个 JSON 对象,并列出字段级差异。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/JsonDiff.cshtml工具Safelink 解码器从 Outlook Safelink 链接中提取真实目标地址。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Web/SafelinkDecoder.cshtml工具标题转 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.cshtml工具WiFi 二维码生成器根据 WiFi 名称、密码和加密方式生成快速连接二维码。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/ImagesAndVideos/WifiQrcodeGenerator.cshtml工具SVG 占位图生成器按尺寸、颜色和文本生成 SVG 占位图。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/ImagesAndVideos/SvgPlaceholderGenerator.cshtml工具摄像头拍照工具调用浏览器摄像头进行预览,并可截取当前画面。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/ImagesAndVideos/CameraRecorder.cshtml工具Icon 图标转换器将图片转换为 ICO 图标,或按多尺寸导出图标压缩包。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/ImagesAndVideos/IconConverter.cshtml工具挪车码生成器根据手机号生成可扫码联系车主的临时挪车二维码。
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.cshtml工具随机端口生成器生成 1024 到 65535 范围内的随机端口号。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/RandomPortGenerator.cshtml工具Crontab 表达式生成器组合分钟、小时、日期、月份和星期字段,生成 crontab 表达式。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/CrontabGenerator.cshtml工具JSON 格式化将 JSON 字符串格式化为易读的缩进结构。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/JsonPrettify.cshtml工具JSON 压缩移除 JSON 中多余空白,生成紧凑字符串。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/JsonMinify.cshtml工具JSON 转 CSV把对象数组形式的 JSON 转换为 CSV 文本。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/JsonToCsv.cshtml工具SQL 格式化对 SQL 查询进行基础换行和缩进,提升可读性。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/SqlPrettify.cshtml工具Chmod 权限计算器选择读、写、执行权限,生成八进制和符号形式的 chmod 命令。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/ChmodCalculator.cshtml工具Docker Run 转 Compose把常见 docker run 参数转换为 docker compose 服务片段。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/DockerRunToDockerComposeConverter.cshtml工具XML 格式化将 XML 字符串整理为缩进后的易读格式。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/XmlFormatter.cshtml工具YAML 格式化解析并重新输出 YAML,使结构更清晰。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/YamlPrettify.cshtml工具邮箱地址规范化对邮箱地址做小写、去标签等规范化处理,支持 Gmail 点号规则。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/EmailNormalizer.cshtml工具正则表达式测试器输入正则表达式、标志和样本文本,查看匹配结果。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Development/RegexTester.cshtml工具正则表达式速查表列出常用正则语法、字符类、量词和分组写法。
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.cshtml工具IPv4 地址转换器将 IPv4 地址转换为十进制、十六进制、二进制和 IPv6 映射形式。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Network/Ipv4AddressConverter.cshtml工具IPv4 范围计算器根据起止 IPv4 地址计算地址数量和覆盖该范围的 CIDR。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Network/Ipv4RangeExpander.cshtml工具MAC 地址厂商查询根据 MAC 地址查询设备厂商信息。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Network/MacAddressLookup.cshtml工具MAC 地址生成器按前缀和数量生成随机 MAC 地址。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Network/MacAddressGenerator.cshtml工具IPv6 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.cshtml工具ETA 预计完成时间计算器根据已完成量、总量和已耗时估算剩余时间与完成时刻。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Math/EtaCalculator.cshtml工具百分比计算器计算占比、百分比对应值以及两个数之间的变化百分比。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Math/PercentageCalculator.cshtml工具复利计算器按年、月、日复利方式计算本金、利率和收益变化。
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.cshtml工具温度转换器在摄氏度、华氏度、开尔文和兰氏度之间转换。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Measurement/TemperatureConverter.cshtml工具基准测试工具在当前浏览器中多次运行 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.cshtml工具文本统计统计文本字符数、字节数、词数、行数、句子数和段落数。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Text/TextStatistics.cshtml工具Emoji 选择器快速选择并复制常用 Emoji 表情。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Text/EmojiPicker.cshtml工具字符串脱敏工具隐藏字符串中间部分,便于分享令牌、账号或其他敏感片段。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Text/StringObfuscator.cshtml工具文本差异比较逐行比较两段文本,显示新增和删除内容。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Text/TextDiff.cshtml工具数字缩写生成器把 internationalization 转为 i18n 这类数字缩写形式。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Text/NumeronymGenerator.cshtml工具ASCII 文本绘制器把输入文本转换为简单的 ASCII 风格排列。
https://github.com/dotnet9/CodeWF/blob/main/src/WebApp/Pages/Tool/Text/AsciiTextDrawer.cshtml数据工具
电话、IBAN 等结构化数据工具。