C:
char c = '\uC432';
printf("%c\n", c); // Output: 쐲
JavaScript:
const char = '\uC432';
console.log(char); // Output: 쐲
Java:
char c = '\uC432';
System.out.println(c); // Output: 쐲
JSON:
{"text": "\uC432"} // Value: 쐲
Python:
char = '\uC432'
print(char) # Output: 쐲
Perl:
my $char = "\x{C432}";
print $char; # Output: 쐲
PHP:
$char = "\x{C432}";
echo $char; // Output: 쐲
Ruby:
char = "\u{C432}"
puts char # Output: 쐲
Rust:
let c = '\u{C432}';
println!("{}", c); // Output: 쐲
Go:
char := '\uC432'
fmt.Printf("%c\n", char) // Output: 쐲
CSS:
/* CSS content property */
.element::before {
content: "\00C432"; /* 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%B2
MD5:
436a148e5ec0806f21a88deec80fe55d
SHA1:
7b96586d95c1b59a2bcc9f0bcb0262768c50a95d
Base64:
7JCy