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