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