C:
char c = '\uC12E';
printf("%c\n", c); // Output: 섮
JavaScript:
const char = '\uC12E';
console.log(char); // Output: 섮
Java:
char c = '\uC12E';
System.out.println(c); // Output: 섮
JSON:
{"text": "\uC12E"} // Value: 섮
Python:
char = '\uC12E'
print(char) # Output: 섮
Perl:
my $char = "\x{C12E}";
print $char; # Output: 섮
PHP:
$char = "\x{C12E}";
echo $char; // Output: 섮
Ruby:
char = "\u{C12E}"
puts char # Output: 섮
Rust:
let c = '\u{C12E}';
println!("{}", c); // Output: 섮
Go:
char := '\uC12E'
fmt.Printf("%c\n", char) // Output: 섮
CSS:
/* CSS content property */
.element::before {
content: "\00C12E"; /* 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%AE
MD5:
6eef442f4ce4d962e29d7e0632111c8d
SHA1:
5a637ccc8b57a754f6605b03dfe151fc5ceeffe2
Base64:
7ISu