I am using LLDB and wondering how to print the contents of a specific memory address, for example 0xb0987654.
To complement Michael's answer.
I tend to use:
memory read -s1 -fu -c10000 0xb0987654 --force
That will print in the debugger.
Hope this helps.