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