C:
char c = '\uC4B3';
printf("%c\n", c); // Output: 쒳
JavaScript:
const char = '\uC4B3';
console.log(char); // Output: 쒳
Java:
char c = '\uC4B3';
System.out.println(c); // Output: 쒳
JSON:
{"text": "\uC4B3"} // Value: 쒳
Python:
char = '\uC4B3'
print(char) # Output: 쒳
Perl:
my $char = "\x{C4B3}";
print $char; # Output: 쒳
PHP:
$char = "\x{C4B3}";
echo $char; // Output: 쒳
Ruby:
char = "\u{C4B3}"
puts char # Output: 쒳
Rust:
let c = '\u{C4B3}';
println!("{}", c); // Output: 쒳
Go:
char := '\uC4B3'
fmt.Printf("%c\n", char) // Output: 쒳
CSS:
/* CSS content property */
.element::before {
content: "\00C4B3"; /* 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%92%B3
MD5:
52f706ffc750da6f3d72c39798b50dd9
SHA1:
f583c69449efdd1d0073e50a10d98deec23ad71f
Base64:
7JKz