C:
char c = '\uD0AB';
printf("%c\n", c); // Output: 킫
JavaScript:
const char = '\uD0AB';
console.log(char); // Output: 킫
Java:
char c = '\uD0AB';
System.out.println(c); // Output: 킫
JSON:
{"text": "\uD0AB"} // Value: 킫
Python:
char = '\uD0AB'
print(char) # Output: 킫
Perl:
my $char = "\x{D0AB}";
print $char; # Output: 킫
PHP:
$char = "\x{D0AB}";
echo $char; // Output: 킫
Ruby:
char = "\u{D0AB}"
puts char # Output: 킫
Rust:
let c = '\u{D0AB}';
println!("{}", c); // Output: 킫
Go:
char := '\uD0AB'
fmt.Printf("%c\n", char) // Output: 킫
CSS:
/* CSS content property */
.element::before {
content: "\00D0AB"; /* 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%82%AB
MD5:
6f0a9612cba72689fe2b18ef4db56faf
SHA1:
1bc5be42370f16b9f4804ba4ef6033e34ff680c7
Base64:
7YKr