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