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