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