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