C:
char c = '\uCD5F';
printf("%c\n", c); // Output: 쵟
JavaScript:
const char = '\uCD5F';
console.log(char); // Output: 쵟
Java:
char c = '\uCD5F';
System.out.println(c); // Output: 쵟
JSON:
{"text": "\uCD5F"} // Value: 쵟
Python:
char = '\uCD5F'
print(char) # Output: 쵟
Perl:
my $char = "\x{CD5F}";
print $char; # Output: 쵟
PHP:
$char = "\x{CD5F}";
echo $char; // Output: 쵟
Ruby:
char = "\u{CD5F}"
puts char # Output: 쵟
Rust:
let c = '\u{CD5F}';
println!("{}", c); // Output: 쵟
Go:
char := '\uCD5F'
fmt.Printf("%c\n", char) // Output: 쵟
CSS:
/* CSS content property */
.element::before {
content: "\00CD5F"; /* 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%9F
MD5:
2b325f7ccd6857478b6970866f607da9
SHA1:
128c0ccb7e98f13e37f3a36daa88c9a4d40c5b8a
Base64:
7LWf