C:
char c = '\uB658';
printf("%c\n", c); // Output: 뙘
JavaScript:
const char = '\uB658';
console.log(char); // Output: 뙘
Java:
char c = '\uB658';
System.out.println(c); // Output: 뙘
JSON:
{"text": "\uB658"} // Value: 뙘
Python:
char = '\uB658'
print(char) # Output: 뙘
Perl:
my $char = "\x{B658}";
print $char; # Output: 뙘
PHP:
$char = "\x{B658}";
echo $char; // Output: 뙘
Ruby:
char = "\u{B658}"
puts char # Output: 뙘
Rust:
let c = '\u{B658}';
println!("{}", c); // Output: 뙘
Go:
char := '\uB658'
fmt.Printf("%c\n", char) // Output: 뙘
CSS:
/* CSS content property */
.element::before {
content: "\00B658"; /* 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%99%98
MD5:
d00bfa5d9215b7d95f4133cdf78de800
SHA1:
438662fe73bf7c29efca736fcd35356ae93fb7e4
Base64:
65mY