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