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