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