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