public static bool TryGet(this JsonNode self, String key, out JsonNode found) { var ukey = Utf8String.From(key); return(self.TryGet(ukey, out found)); }