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