Site icon Hip-Hop Website Design and Development

How to get data from user meta custom fields created with acf-pro plugin?

I need to get user meta from the database and WordPress has the awesome function get_user_meta() for this purpose but, the problem is I need not default meta field. I need to get data from a custom field created with ACF-pro. And I really confused about how to do this. I try:

$user_data = get_user_meta('19') 
print_r($user_data)

And among a large number of different data, I see what I need:

[user-sector] => Array ( [0] => a:3:{i:0;s:3:"602";i:1;s:3:"601";i:2;s:3:"584";} ) [_user-sector] => Array ( [0] => field_611d13578192e ) [user-country] => Array ( [0] => a:1:{i:0;s:2:"17";} ) [_user-country] => Array ( [0] => field_611d138e8192f ) )

Of course I tried using: get_user_meta(’19’, ‘user-country’) and also I tried using: get_user_meta(’19’, ‘_user-country’) and of couse nothing as a result. The result is just an empty array. So is there really a method to get data from meta fields created with acf?