First off, the permission settings only apply to new files and folders, so already existing files/folders will keep the existing permissions. Secondly the values is stored as an int, though the permissions are displayed as an octal, so the value for the permission '755' is 493. You can use python for this:
$ python
>>> 0755
493
>>> oct(493)
'0755'