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