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