C:
char c = '\uC11F';
printf("%c\n", c); // Output: 섟
JavaScript:
const char = '\uC11F';
console.log(char); // Output: 섟
Java:
char c = '\uC11F';
System.out.println(c); // Output: 섟
JSON:
{"text": "\uC11F"} // Value: 섟
Python:
char = '\uC11F'
print(char) # Output: 섟
Perl:
my $char = "\x{C11F}";
print $char; # Output: 섟
PHP:
$char = "\x{C11F}";
echo $char; // Output: 섟
Ruby:
char = "\u{C11F}"
puts char # Output: 섟
Rust:
let c = '\u{C11F}';
println!("{}", c); // Output: 섟
Go:
char := '\uC11F'
fmt.Printf("%c\n", char) // Output: 섟
CSS:
/* CSS content property */
.element::before {
content: "\00C11F"; /* 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%9F
MD5:
240b3b41a7107a7f5397aafa032d22a4
SHA1:
181d4857f84891e62f5ebe66cc14f83202ba622d
Base64:
7ISf