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