C:
char c = '\uC729';
printf("%c\n", c); // Output: 윩
JavaScript:
const char = '\uC729';
console.log(char); // Output: 윩
Java:
char c = '\uC729';
System.out.println(c); // Output: 윩
JSON:
{"text": "\uC729"} // Value: 윩
Python:
char = '\uC729'
print(char) # Output: 윩
Perl:
my $char = "\x{C729}";
print $char; # Output: 윩
PHP:
$char = "\x{C729}";
echo $char; // Output: 윩
Ruby:
char = "\u{C729}"
puts char # Output: 윩
Rust:
let c = '\u{C729}';
println!("{}", c); // Output: 윩
Go:
char := '\uC729'
fmt.Printf("%c\n", char) // Output: 윩
CSS:
/* CSS content property */
.element::before {
content: "\00C729"; /* 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%9C%A9
MD5:
0d707519aa94a96ffdf87afbee8edc77
SHA1:
1f4a3708915eb75179dd05a65813e38d81d4112b
Base64:
7Jyp