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