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