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