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