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