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