C:
char c = '\uC615';
printf("%c\n", c); // Output: 옕
JavaScript:
const char = '\uC615';
console.log(char); // Output: 옕
Java:
char c = '\uC615';
System.out.println(c); // Output: 옕
JSON:
{"text": "\uC615"} // Value: 옕
Python:
char = '\uC615'
print(char) # Output: 옕
Perl:
my $char = "\x{C615}";
print $char; # Output: 옕
PHP:
$char = "\x{C615}";
echo $char; // Output: 옕
Ruby:
char = "\u{C615}"
puts char # Output: 옕
Rust:
let c = '\u{C615}';
println!("{}", c); // Output: 옕
Go:
char := '\uC615'
fmt.Printf("%c\n", char) // Output: 옕
CSS:
/* CSS content property */
.element::before {
content: "\00C615"; /* 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%95
MD5:
f82c2ab18296dd60c589f0e3a5f006c2
SHA1:
78fde06564014a46220264eddbbcec02e3f047a2
Base64:
7JiV