feat(new-tool): added unicode conversion utilities (#858)

* feat: add Text to Unicode tool

* Update src/tools/text-to-unicode/index.ts

---------

Co-authored-by: Corentin THOMASSET <corentin.thomasset74@gmail.com>
This commit is contained in:
hieudt-2054 2024-01-31 16:55:18 +07:00 committed by GitHub
parent 670f735501
commit c46207f1bb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 103 additions and 0 deletions

View file

@ -0,0 +1,12 @@
import { TextWrap } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Text to Unicode',
path: '/text-to-unicode',
description: 'Parse and convert text to unicode and vice-versa',
keywords: ['text', 'to', 'unicode'],
component: () => import('./text-to-unicode.vue'),
icon: TextWrap,
createdAt: new Date('2024-01-31'),
});