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