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