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