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