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