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