C:
char c = '\uC433';
printf("%c\n", c); // Output: 쐳
JavaScript:
const char = '\uC433';
console.log(char); // Output: 쐳
Java:
char c = '\uC433';
System.out.println(c); // Output: 쐳
JSON:
{"text": "\uC433"} // Value: 쐳
Python:
char = '\uC433'
print(char) # Output: 쐳
Perl:
my $char = "\x{C433}";
print $char; # Output: 쐳
PHP:
$char = "\x{C433}";
echo $char; // Output: 쐳
Ruby:
char = "\u{C433}"
puts char # Output: 쐳
Rust:
let c = '\u{C433}';
println!("{}", c); // Output: 쐳
Go:
char := '\uC433'
fmt.Printf("%c\n", char) // Output: 쐳
CSS:
/* CSS content property */
.element::before {
content: "\00C433"; /* 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%90%B3
MD5:
edc8d66aa90e5c869370e758c0ae76d7
SHA1:
502a5e84e7ec1dbb4adb9efa0cdf59103874cb3a
Base64:
7JCz