swift 3 中的等价物是什么

What is the equivalence in swift 3

在java中我使用下面的代码

string value = "b:0001"

byte[] bytes = value.getBytes("US-ASCII");

有谁知道 Swift 3 中的等价物而不是传递给字节 [] 传递给数据?

这会返回数据:

let str = "b:0001"
let bytes = str.data(using: .ascii)!