show/hide this revision's text 2

I'm not sure I'm understanding your problem. The following code gives me a file containing \x65. Is that what you are trying to do?

#!/usr/bin/env ruby

File.open("foo.tmp", "w") do |f|
  f.puts '\x' + '65'
end

If you have the hex value and you want to create a string containing that the character corresponding to that hex value, you can do:

irb(main):002:0> '65'.hex.chr
=> "e"

Another option is to use Array#pack; this can be used if you need to convert a list of numbers to a single string:

irb(main):003:0> ['65'.hex].pack("C")
=> "e"
irb(main):004:0> ['66', '6f', '6f'].map {|x| x.hex}.pack("C*")
=> "foo"
show/hide this revision's text 1

I'm not sure I'm understanding your problem. The following code gives me a file containing \x65. Is that what you are trying to do?

#!/usr/bin/env ruby

File.open("foo.tmp", "w") do |f|
  f.puts '\x' + '65'
end

If you have the hex value and you want to create a string containing that character, you can do:

'65'.hex.chr