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