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