I quite like
#define ASCII_NUL ('\0')
I only very occasionally mistype '\0' as '0'. But when I have done it, I've found the error very hard to spot by code inspection, with hilarious consequences. So I don't like '\0' much, although obviously and prefer ASCII_NUL or 0 (of course the latter has the wrong type in C++). Obviously I use it '\0' where demanded by consistency with existing code, or style guides.
The Google C++ style guide, which contains a few things I like and a few I don't, but seems mostly sound, prefers NULL to 0 for pointers. It points out that NULL might not be defined simply as 0 (or 0L) 0L), especially in cases implementations where sizeof(void*) is might not be sizeof(int) (or sizeof(long int)).
0 and NULL are both specified to be of integral type, and when converted to a pointer type they both must yield a null pointer value. But they aren't necessarily of the same integral type. So you might conceivably get some useful warnings or errors in some situations by using NULL.
