C:
char c = '\uB443';
printf("%c\n", c); // Output: 둃
JavaScript:
const char = '\uB443';
console.log(char); // Output: 둃
Java:
char c = '\uB443';
System.out.println(c); // Output: 둃
JSON:
{"text": "\uB443"} // Value: 둃
Python:
char = '\uB443'
print(char) # Output: 둃
Perl:
my $char = "\x{B443}";
print $char; # Output: 둃
PHP:
$char = "\x{B443}";
echo $char; // Output: 둃
Ruby:
char = "\u{B443}"
puts char # Output: 둃
Rust:
let c = '\u{B443}';
println!("{}", c); // Output: 둃
Go:
char := '\uB443'
fmt.Printf("%c\n", char) // Output: 둃
CSS:
/* CSS content property */
.element::before {
content: "\00B443"; /* 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%91%83
MD5:
057069a1d7a3675ab1f4917cfd70141b
SHA1:
40d4b1a850392507cc12309df6fa63f97f5bdb9d
Base64:
65GD