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