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