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