C:
char c = '\uC564';
printf("%c\n", c); // Output: 앤
JavaScript:
const char = '\uC564';
console.log(char); // Output: 앤
Java:
char c = '\uC564';
System.out.println(c); // Output: 앤
JSON:
{"text": "\uC564"} // Value: 앤
Python:
char = '\uC564'
print(char) # Output: 앤
Perl:
my $char = "\x{C564}";
print $char; # Output: 앤
PHP:
$char = "\x{C564}";
echo $char; // Output: 앤
Ruby:
char = "\u{C564}"
puts char # Output: 앤
Rust:
let c = '\u{C564}';
println!("{}", c); // Output: 앤
Go:
char := '\uC564'
fmt.Printf("%c\n", char) // Output: 앤
CSS:
/* CSS content property */
.element::before {
content: "\00C564"; /* 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%A4
MD5:
067a32f71400077e44358e3d5e11ff54
SHA1:
259b03878705fe0164b3c258da15a6b3cb7eb59e
Base64:
7JWk