C:
char c = '\uC471';
printf("%c\n", c); // Output: 쑱
JavaScript:
const char = '\uC471';
console.log(char); // Output: 쑱
Java:
char c = '\uC471';
System.out.println(c); // Output: 쑱
JSON:
{"text": "\uC471"} // Value: 쑱
Python:
char = '\uC471'
print(char) # Output: 쑱
Perl:
my $char = "\x{C471}";
print $char; # Output: 쑱
PHP:
$char = "\x{C471}";
echo $char; // Output: 쑱
Ruby:
char = "\u{C471}"
puts char # Output: 쑱
Rust:
let c = '\u{C471}';
println!("{}", c); // Output: 쑱
Go:
char := '\uC471'
fmt.Printf("%c\n", char) // Output: 쑱
CSS:
/* CSS content property */
.element::before {
content: "\00C471"; /* 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%91%B1
MD5:
aa9bc6f1331c2d650d2b8b0e464c62fc
SHA1:
948e46bb6399a4d7f25e2460bbb6be71c859ca2f
Base64:
7JGx