C:
char c = '\uBF72';
printf("%c\n", c); // Output: 뽲
JavaScript:
const char = '\uBF72';
console.log(char); // Output: 뽲
Java:
char c = '\uBF72';
System.out.println(c); // Output: 뽲
JSON:
{"text": "\uBF72"} // Value: 뽲
Python:
char = '\uBF72'
print(char) # Output: 뽲
Perl:
my $char = "\x{BF72}";
print $char; # Output: 뽲
PHP:
$char = "\x{BF72}";
echo $char; // Output: 뽲
Ruby:
char = "\u{BF72}"
puts char # Output: 뽲
Rust:
let c = '\u{BF72}';
println!("{}", c); // Output: 뽲
Go:
char := '\uBF72'
fmt.Printf("%c\n", char) // Output: 뽲
CSS:
/* CSS content property */
.element::before {
content: "\00BF72"; /* 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%BD%B2
MD5:
56e4c4e31d616f62425d3dcb011c3427
SHA1:
c1e217551380f9ca53eec4e7b66c64a97ef963ee
Base64:
672y