C:
char c = '\uD08E';
printf("%c\n", c); // Output: 킎
JavaScript:
const char = '\uD08E';
console.log(char); // Output: 킎
Java:
char c = '\uD08E';
System.out.println(c); // Output: 킎
JSON:
{"text": "\uD08E"} // Value: 킎
Python:
char = '\uD08E'
print(char) # Output: 킎
Perl:
my $char = "\x{D08E}";
print $char; # Output: 킎
PHP:
$char = "\x{D08E}";
echo $char; // Output: 킎
Ruby:
char = "\u{D08E}"
puts char # Output: 킎
Rust:
let c = '\u{D08E}';
println!("{}", c); // Output: 킎
Go:
char := '\uD08E'
fmt.Printf("%c\n", char) // Output: 킎
CSS:
/* CSS content property */
.element::before {
content: "\00D08E"; /* 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%8E
MD5:
2ea33a934ba4958c1ba83e1cecc97471
SHA1:
c7f8b552017e406d36bcc06780ca193d5a3edd68
Base64:
7YKO