C:
char c = '\uBC09';
printf("%c\n", c); // Output: 밉
JavaScript:
const char = '\uBC09';
console.log(char); // Output: 밉
Java:
char c = '\uBC09';
System.out.println(c); // Output: 밉
JSON:
{"text": "\uBC09"} // Value: 밉
Python:
char = '\uBC09'
print(char) # Output: 밉
Perl:
my $char = "\x{BC09}";
print $char; # Output: 밉
PHP:
$char = "\x{BC09}";
echo $char; // Output: 밉
Ruby:
char = "\u{BC09}"
puts char # Output: 밉
Rust:
let c = '\u{BC09}';
println!("{}", c); // Output: 밉
Go:
char := '\uBC09'
fmt.Printf("%c\n", char) // Output: 밉
CSS:
/* CSS content property */
.element::before {
content: "\00BC09"; /* 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%B0%89
MD5:
141b18e0e2696c6612a391353d1b7823
SHA1:
eeef5441e86b23e780702e9e758c503faa1dc426
Base64:
67CJ