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