C:
char c = '\uCAB2';
printf("%c\n", c); // Output: 쪲
JavaScript:
const char = '\uCAB2';
console.log(char); // Output: 쪲
Java:
char c = '\uCAB2';
System.out.println(c); // Output: 쪲
JSON:
{"text": "\uCAB2"} // Value: 쪲
Python:
char = '\uCAB2'
print(char) # Output: 쪲
Perl:
my $char = "\x{CAB2}";
print $char; # Output: 쪲
PHP:
$char = "\x{CAB2}";
echo $char; // Output: 쪲
Ruby:
char = "\u{CAB2}"
puts char # Output: 쪲
Rust:
let c = '\u{CAB2}';
println!("{}", c); // Output: 쪲
Go:
char := '\uCAB2'
fmt.Printf("%c\n", char) // Output: 쪲
CSS:
/* CSS content property */
.element::before {
content: "\00CAB2"; /* 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%AA%B2
MD5:
f49b464f6804b2670db65a0429e47b46
SHA1:
526e54a5712b9a950562ba3729315db9cc219c73
Base64:
7Kqy