C:
char c = '\uC621';
printf("%c\n", c); // Output: 옡
JavaScript:
const char = '\uC621';
console.log(char); // Output: 옡
Java:
char c = '\uC621';
System.out.println(c); // Output: 옡
JSON:
{"text": "\uC621"} // Value: 옡
Python:
char = '\uC621'
print(char) # Output: 옡
Perl:
my $char = "\x{C621}";
print $char; # Output: 옡
PHP:
$char = "\x{C621}";
echo $char; // Output: 옡
Ruby:
char = "\u{C621}"
puts char # Output: 옡
Rust:
let c = '\u{C621}';
println!("{}", c); // Output: 옡
Go:
char := '\uC621'
fmt.Printf("%c\n", char) // Output: 옡
CSS:
/* CSS content property */
.element::before {
content: "\00C621"; /* 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%A1
MD5:
479bd66747ee54e397291e2a694ad50a
SHA1:
6227a4f901d7577fe0fd4d15ff2b7c0308828545
Base64:
7Jih