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