C:
char c = '\uC109';
printf("%c\n", c); // Output: 섉
JavaScript:
const char = '\uC109';
console.log(char); // Output: 섉
Java:
char c = '\uC109';
System.out.println(c); // Output: 섉
JSON:
{"text": "\uC109"} // Value: 섉
Python:
char = '\uC109'
print(char) # Output: 섉
Perl:
my $char = "\x{C109}";
print $char; # Output: 섉
PHP:
$char = "\x{C109}";
echo $char; // Output: 섉
Ruby:
char = "\u{C109}"
puts char # Output: 섉
Rust:
let c = '\u{C109}';
println!("{}", c); // Output: 섉
Go:
char := '\uC109'
fmt.Printf("%c\n", char) // Output: 섉
CSS:
/* CSS content property */
.element::before {
content: "\00C109"; /* 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%84%89
MD5:
1adf1f9df6457fd9e9dd20eba3bb989d
SHA1:
23f85f9386b02b2ac25750ea32b6e4d41aa2fddf
Base64:
7ISJ