C:
char c = '\uC105';
printf("%c\n", c); // Output: 섅
JavaScript:
const char = '\uC105';
console.log(char); // Output: 섅
Java:
char c = '\uC105';
System.out.println(c); // Output: 섅
JSON:
{"text": "\uC105"} // Value: 섅
Python:
char = '\uC105'
print(char) # Output: 섅
Perl:
my $char = "\x{C105}";
print $char; # Output: 섅
PHP:
$char = "\x{C105}";
echo $char; // Output: 섅
Ruby:
char = "\u{C105}"
puts char # Output: 섅
Rust:
let c = '\u{C105}';
println!("{}", c); // Output: 섅
Go:
char := '\uC105'
fmt.Printf("%c\n", char) // Output: 섅
CSS:
/* CSS content property */
.element::before {
content: "\00C105"; /* 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%85
MD5:
8e57d5bc94c2759f851f69bcb6a6610e
SHA1:
56ba969b8f3623989207b5cb149657ad40a7e775
Base64:
7ISF