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