C:
char c = '\uD063';
printf("%c\n", c); // Output: 큣
JavaScript:
const char = '\uD063';
console.log(char); // Output: 큣
Java:
char c = '\uD063';
System.out.println(c); // Output: 큣
JSON:
{"text": "\uD063"} // Value: 큣
Python:
char = '\uD063'
print(char) # Output: 큣
Perl:
my $char = "\x{D063}";
print $char; # Output: 큣
PHP:
$char = "\x{D063}";
echo $char; // Output: 큣
Ruby:
char = "\u{D063}"
puts char # Output: 큣
Rust:
let c = '\u{D063}';
println!("{}", c); // Output: 큣
Go:
char := '\uD063'
fmt.Printf("%c\n", char) // Output: 큣
CSS:
/* CSS content property */
.element::before {
content: "\00D063"; /* 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=%ED%81%A3
MD5:
07cfc161776b8542bc6fe784e2d18129
SHA1:
cc3f051e8f9ec8c1e239278157624a29551015dd
Base64:
7YGj