C:
char c = '\uCA5B';
printf("%c\n", c); // Output: 쩛
JavaScript:
const char = '\uCA5B';
console.log(char); // Output: 쩛
Java:
char c = '\uCA5B';
System.out.println(c); // Output: 쩛
JSON:
{"text": "\uCA5B"} // Value: 쩛
Python:
char = '\uCA5B'
print(char) # Output: 쩛
Perl:
my $char = "\x{CA5B}";
print $char; # Output: 쩛
PHP:
$char = "\x{CA5B}";
echo $char; // Output: 쩛
Ruby:
char = "\u{CA5B}"
puts char # Output: 쩛
Rust:
let c = '\u{CA5B}';
println!("{}", c); // Output: 쩛
Go:
char := '\uCA5B'
fmt.Printf("%c\n", char) // Output: 쩛
CSS:
/* CSS content property */
.element::before {
content: "\00CA5B"; /* 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%A9%9B
MD5:
674c7d4102b0464885ab3ed66c6ff275
SHA1:
e349526c6ea78d4a522e3586d750579efbc374e7
Base64:
7Kmb