hash = { name: 'Rob', age: '28' } hash.transform_keys{ |key| key.to_s.upcase } # => { "NAME" => "Rob", "AGE" => "28" }