{% extends 'tools/ascii/master.twig' %} {% set header_title = 'ascii table' %} {% set master_breadcrumbs = [{ url: '/tools', text: 'tools' }, { url: '/tools/ascii', text: 'ascii' }] %} {% block column_left %}
About

This page provides a filterable ASCII table allowing for quick lookup, in case you need a Delta Line Escape character for some reason.

I've heard the Linux manual pages also have an equivalent but sometimes you don't readily have access to a Linux terminal ok...

Filters
A
All characters
C
Control characters
P
Printable characters
{% endblock %} {% block column_centre %}
Type printable for all printable characters, or control for all control characters.
{% for info in chars %} {% set print = info.string %}
{{ info.string }}
{{ info.name }}
Dec
{{ info.decimal }}
Oct
{{ info.octal }}
Hex
{{ info.hex }}
{% if info.hasHtml %}
HTML
&{{ info.html }};
{% endif %}
{% endfor %}
{% endblock %}