C:
char c = '\uB30B';
printf("%c\n", c); // Output: 댋
JavaScript:
const char = '\uB30B';
console.log(char); // Output: 댋
Java:
char c = '\uB30B';
System.out.println(c); // Output: 댋
JSON:
{"text": "\uB30B"} // Value: 댋
Python:
char = '\uB30B'
print(char) # Output: 댋
Perl:
my $char = "\x{B30B}";
print $char; # Output: 댋
PHP:
$char = "\x{B30B}";
echo $char; // Output: 댋
Ruby:
char = "\u{B30B}"
puts char # Output: 댋
Rust:
let c = '\u{B30B}';
println!("{}", c); // Output: 댋
Go:
char := '\uB30B'
fmt.Printf("%c\n", char) // Output: 댋
CSS:
/* CSS content property */
.element::before {
content: "\00B30B"; /* 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%8C%8B
MD5:
e45c62db7413e6de7ac5ebb6d5f0f83b
SHA1:
9921b770223a976b31e72e26b37dfcb5c958bedb
Base64:
64yL