C:
char c = '\uD798';
printf("%c\n", c); // Output: 힘
JavaScript:
const char = '\uD798';
console.log(char); // Output: 힘
Java:
char c = '\uD798';
System.out.println(c); // Output: 힘
JSON:
{"text": "\uD798"} // Value: 힘
Python:
char = '\uD798'
print(char) # Output: 힘
Perl:
my $char = "\x{D798}";
print $char; # Output: 힘
PHP:
$char = "\x{D798}";
echo $char; // Output: 힘
Ruby:
char = "\u{D798}"
puts char # Output: 힘
Rust:
let c = '\u{D798}';
println!("{}", c); // Output: 힘
Go:
char := '\uD798'
fmt.Printf("%c\n", char) // Output: 힘
CSS:
/* CSS content property */
.element::before {
content: "\00D798"; /* 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=%ED%9E%98
MD5:
fa3d1363312c4c36ec4649e9daa706f7
SHA1:
ef089ef75e998dcd42cf1ad6381d5292feb9da37
Base64:
7Z6Y