C:
char c = '\uB3B0';
printf("%c\n", c); // Output: 뎰
JavaScript:
const char = '\uB3B0';
console.log(char); // Output: 뎰
Java:
char c = '\uB3B0';
System.out.println(c); // Output: 뎰
JSON:
{"text": "\uB3B0"} // Value: 뎰
Python:
char = '\uB3B0'
print(char) # Output: 뎰
Perl:
my $char = "\x{B3B0}";
print $char; # Output: 뎰
PHP:
$char = "\x{B3B0}";
echo $char; // Output: 뎰
Ruby:
char = "\u{B3B0}"
puts char # Output: 뎰
Rust:
let c = '\u{B3B0}';
println!("{}", c); // Output: 뎰
Go:
char := '\uB3B0'
fmt.Printf("%c\n", char) // Output: 뎰
CSS:
/* CSS content property */
.element::before {
content: "\00B3B0"; /* 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%8E%B0
MD5:
85257bc00154cdf1b2bf1c2e16524598
SHA1:
ddbee642edb236e3714a42369c988a8b07e0f3f0
Base64:
646w