IR remote code

Hello i'm trying to get this IR remote to control a servo movement but i keep getting an error message. It should be easy fixing it but i'm having problems. It keeps saying that FF02FD was not defined.

#include <IRremote.h>
#include <Servo.h>

Servo myservo;

int RECV_PIN = 11;

IRrecv irrecv(RECV_PIN);

decode_results results;

void setup()
{
  Serial.begin(9600);
  irrecv.enableIRIn(); // Start the receiver
  myservo.attach (9);
}

void loop() {
  
  if (irrecv.decode(&results)) {
    Serial.println(results.value, HEX);
    
    if (results.value == FF02FD)  { 
      pos += 1;
      myservo.write(pos);
      
    irrecv.resume(); // Receive the next value
  }
}/code]

If FF02FD is supposed to be a HEX number it needs to be 0xFF02FD.