If you want to access directly on one category, just use:
<?php
print_r(get_defined_constants(true)['Core']);
?>
you can replace 'Core' by the category you wish (e.g. user):
<?php
print_r(get_defined_constants(true)['user']);
?>
Warning: only use this on development side