C:
char c = '\uCFFE';
printf("%c\n", c); // Output: 쿾
JavaScript:
const char = '\uCFFE';
console.log(char); // Output: 쿾
Java:
char c = '\uCFFE';
System.out.println(c); // Output: 쿾
JSON:
{"text": "\uCFFE"} // Value: 쿾
Python:
char = '\uCFFE'
print(char) # Output: 쿾
Perl:
my $char = "\x{CFFE}";
print $char; # Output: 쿾
PHP:
$char = "\x{CFFE}";
echo $char; // Output: 쿾
Ruby:
char = "\u{CFFE}"
puts char # Output: 쿾
Rust:
let c = '\u{CFFE}';
println!("{}", c); // Output: 쿾
Go:
char := '\uCFFE'
fmt.Printf("%c\n", char) // Output: 쿾
CSS:
/* CSS content property */
.element::before {
content: "\00CFFE"; /* 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%BF%BE
MD5:
08f066585dec7c751eeaa5de2b282050
SHA1:
53f51dfc266b8c41c5400ad1420a503f1bb5da81
Base64:
7L++