字符串 codeUnitAt 方法


返回给定索引处的 16 位 UTF-16 代码单元。

句法

String.codeUnitAt(int index)

范围

  • Index - 表示字符串中字符的索引。

返回类型

返回一个整数。

例子

void main() { 
   var res = "Good Day"; 
   print("Code Unit of index 0 (G): ${res.codeUnitAt(0)}");  
}  

它将产生以下输出-。

Code Unit of index 0 (G): 71  
dart_programming_string.htm