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