C:
char c = '\uAC56';
printf("%c\n", c); // Output: 걖
JavaScript:
const char = '\uAC56';
console.log(char); // Output: 걖
Java:
char c = '\uAC56';
System.out.println(c); // Output: 걖
JSON:
{"text": "\uAC56"} // Value: 걖
Python:
char = '\uAC56'
print(char) # Output: 걖
Perl:
my $char = "\x{AC56}";
print $char; # Output: 걖
PHP:
$char = "\x{AC56}";
echo $char; // Output: 걖
Ruby:
char = "\u{AC56}"
puts char # Output: 걖
Rust:
let c = '\u{AC56}';
println!("{}", c); // Output: 걖
Go:
char := '\uAC56'
fmt.Printf("%c\n", char) // Output: 걖
CSS:
/* CSS content property */
.element::before {
content: "\00AC56"; /* 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%B1%96
MD5:
5cd86b3d1811cdfbde1e12c5bbaa4281
SHA1:
786622ab345eb52e29d23fb18dfd16c44ee90de8
Base64:
6rGW