C:
char c = '\uC572';
printf("%c\n", c); // Output: 앲
JavaScript:
const char = '\uC572';
console.log(char); // Output: 앲
Java:
char c = '\uC572';
System.out.println(c); // Output: 앲
JSON:
{"text": "\uC572"} // Value: 앲
Python:
char = '\uC572'
print(char) # Output: 앲
Perl:
my $char = "\x{C572}";
print $char; # Output: 앲
PHP:
$char = "\x{C572}";
echo $char; // Output: 앲
Ruby:
char = "\u{C572}"
puts char # Output: 앲
Rust:
let c = '\u{C572}';
println!("{}", c); // Output: 앲
Go:
char := '\uC572'
fmt.Printf("%c\n", char) // Output: 앲
CSS:
/* CSS content property */
.element::before {
content: "\00C572"; /* 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%B2
MD5:
330b0c42489c20f91b6e98b9a2e687da
SHA1:
12c642d0b1ea2bcea84f7f3cdb3158a9e05bf85e
Base64:
7JWy