C:
char c = '\uCD4B';
printf("%c\n", c); // Output: 쵋
JavaScript:
const char = '\uCD4B';
console.log(char); // Output: 쵋
Java:
char c = '\uCD4B';
System.out.println(c); // Output: 쵋
JSON:
{"text": "\uCD4B"} // Value: 쵋
Python:
char = '\uCD4B'
print(char) # Output: 쵋
Perl:
my $char = "\x{CD4B}";
print $char; # Output: 쵋
PHP:
$char = "\x{CD4B}";
echo $char; // Output: 쵋
Ruby:
char = "\u{CD4B}"
puts char # Output: 쵋
Rust:
let c = '\u{CD4B}';
println!("{}", c); // Output: 쵋
Go:
char := '\uCD4B'
fmt.Printf("%c\n", char) // Output: 쵋
CSS:
/* CSS content property */
.element::before {
content: "\00CD4B"; /* 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%B5%8B
MD5:
18f39c43c1cdf21ca185d0bc8aa968c0
SHA1:
44923f19f7e4ef392ed749379d583412f3ab55db
Base64:
7LWL