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