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