C:
char c = '\uCED6';
printf("%c\n", c); // Output: 컖
JavaScript:
const char = '\uCED6';
console.log(char); // Output: 컖
Java:
char c = '\uCED6';
System.out.println(c); // Output: 컖
JSON:
{"text": "\uCED6"} // Value: 컖
Python:
char = '\uCED6'
print(char) # Output: 컖
Perl:
my $char = "\x{CED6}";
print $char; # Output: 컖
PHP:
$char = "\x{CED6}";
echo $char; // Output: 컖
Ruby:
char = "\u{CED6}"
puts char # Output: 컖
Rust:
let c = '\u{CED6}';
println!("{}", c); // Output: 컖
Go:
char := '\uCED6'
fmt.Printf("%c\n", char) // Output: 컖
CSS:
/* CSS content property */
.element::before {
content: "\00CED6"; /* 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%BB%96
MD5:
e3ff9ffd5158a3bba8a10edf7439e44e
SHA1:
74a44c42298c88ccbe12a325ee6f7a33c74ffce6
Base64:
7LuW