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