C:
char c = '\uB685';
printf("%c\n", c); // Output: 뚅
JavaScript:
const char = '\uB685';
console.log(char); // Output: 뚅
Java:
char c = '\uB685';
System.out.println(c); // Output: 뚅
JSON:
{"text": "\uB685"} // Value: 뚅
Python:
char = '\uB685'
print(char) # Output: 뚅
Perl:
my $char = "\x{B685}";
print $char; # Output: 뚅
PHP:
$char = "\x{B685}";
echo $char; // Output: 뚅
Ruby:
char = "\u{B685}"
puts char # Output: 뚅
Rust:
let c = '\u{B685}';
println!("{}", c); // Output: 뚅
Go:
char := '\uB685'
fmt.Printf("%c\n", char) // Output: 뚅
CSS:
/* CSS content property */
.element::before {
content: "\00B685"; /* 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=%EB%9A%85
MD5:
1646fda04b62e702acae72684a9e03be
SHA1:
4cda810d5dd1d3ac1fe87f7316fd88f612cb65d5
Base64:
65qF