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