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