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