Drupal Console also provide commands to interact with users. Although they do not allow the creation of users or roles, they provide a basic user management.
The user:login:url command will generate a one-time login link for the specified user ID. This uses the same methods as the Drush command:
$ drupal user:login:url 2
The user:password:reset command allows you to reset a user's password to the new provided password. You can provide the user ID and new password as arguments, but if missing, the values will be prompted for interactively:
$ drupal user:password:reset 2 newpassword
The create:users command provides an interactive way to generate bulk users, which are useful for debugging. However, it cannot create individual users with specific passwords like Drush.