C:
char c = '\uB808';
printf("%c\n", c); // Output: 레
JavaScript:
const char = '\uB808';
console.log(char); // Output: 레
Java:
char c = '\uB808';
System.out.println(c); // Output: 레
JSON:
{"text": "\uB808"} // Value: 레
Python:
char = '\uB808'
print(char) # Output: 레
Perl:
my $char = "\x{B808}";
print $char; # Output: 레
PHP:
$char = "\x{B808}";
echo $char; // Output: 레
Ruby:
char = "\u{B808}"
puts char # Output: 레
Rust:
let c = '\u{B808}';
println!("{}", c); // Output: 레
Go:
char := '\uB808'
fmt.Printf("%c\n", char) // Output: 레
CSS:
/* CSS content property */
.element::before {
content: "\00B808"; /* Display: 레 */
}
HTML Decimal:
<p>HTML decimal: 레</p> <!-- Display: 레 -->
HTML Hexadecimal:
<p>HTML hex: 레</p> <!-- Display: 레 -->
URL Encoding:
// 레 URL encoding
https://unicodefinder.com/search.php?query=%EB%A0%88
MD5:
c61f1c3246a25b2426ad3e7539eaba20
SHA1:
82c4307b20dc17cc9dcd8c1d2c4b3aa1c4862b20
Base64:
66CI