C:
char c = '\uAE41';
printf("%c\n", c); // Output: 깁
JavaScript:
const char = '\uAE41';
console.log(char); // Output: 깁
Java:
char c = '\uAE41';
System.out.println(c); // Output: 깁
JSON:
{"text": "\uAE41"} // Value: 깁
Python:
char = '\uAE41'
print(char) # Output: 깁
Perl:
my $char = "\x{AE41}";
print $char; # Output: 깁
PHP:
$char = "\x{AE41}";
echo $char; // Output: 깁
Ruby:
char = "\u{AE41}"
puts char # Output: 깁
Rust:
let c = '\u{AE41}';
println!("{}", c); // Output: 깁
Go:
char := '\uAE41'
fmt.Printf("%c\n", char) // Output: 깁
CSS:
/* CSS content property */
.element::before {
content: "\00AE41"; /* 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=%EA%B9%81
MD5:
c1559d9241dc5fe0b2b60ea21fd7b89b
SHA1:
4520ed7c56c6ecc2de2d4c0d99421b85bb816a70
Base64:
6rmB