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