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