aboutsummaryrefslogtreecommitdiff
path: root/src/tools/text-to-unicode/index.ts
blob: 885cfc995013043bf5ab33edc1bcfbad785b6ee2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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'),
});