13 lines
		
	
	
		
			458 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			458 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { Binary } from '@vicons/tabler';
 | |
| import { defineTool } from '../tool';
 | |
| 
 | |
| export const tool = defineTool({
 | |
|   name: 'Text to ASCII binary',
 | |
|   path: '/text-to-binary',
 | |
|   description: 'Convert text to its ASCII binary,Unicode or Utf8 representation and vice versa.',
 | |
|   keywords: ['text', 'to', 'binary', 'converter', 'encode', 'decode', 'ascii'],
 | |
|   component: () => import('./text-to-binary.vue'),
 | |
|   icon: Binary,
 | |
|   createdAt: new Date('2023-10-15'),
 | |
| });
 |