C:
char c = '\uCEFF';
printf("%c\n", c); // Output: 컿
JavaScript:
const char = '\uCEFF';
console.log(char); // Output: 컿
Java:
char c = '\uCEFF';
System.out.println(c); // Output: 컿
JSON:
{"text": "\uCEFF"} // Value: 컿
Python:
char = '\uCEFF'
print(char) # Output: 컿
Perl:
my $char = "\x{CEFF}";
print $char; # Output: 컿
PHP:
$char = "\x{CEFF}";
echo $char; // Output: 컿
Ruby:
char = "\u{CEFF}"
puts char # Output: 컿
Rust:
let c = '\u{CEFF}';
println!("{}", c); // Output: 컿
Go:
char := '\uCEFF'
fmt.Printf("%c\n", char) // Output: 컿
CSS:
/* CSS content property */
.element::before {
content: "\00CEFF"; /* 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%BB%BF
MD5:
66ac0d271840f3075cfbdeaa74eb5807
SHA1:
e1b226462de0005c50faeade05877817b20f707c
Base64:
7Lu/