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