C:
char c = '\uB731';
printf("%c\n", c); // Output: 뜱
JavaScript:
const char = '\uB731';
console.log(char); // Output: 뜱
Java:
char c = '\uB731';
System.out.println(c); // Output: 뜱
JSON:
{"text": "\uB731"} // Value: 뜱
Python:
char = '\uB731'
print(char) # Output: 뜱
Perl:
my $char = "\x{B731}";
print $char; # Output: 뜱
PHP:
$char = "\x{B731}";
echo $char; // Output: 뜱
Ruby:
char = "\u{B731}"
puts char # Output: 뜱
Rust:
let c = '\u{B731}';
println!("{}", c); // Output: 뜱
Go:
char := '\uB731'
fmt.Printf("%c\n", char) // Output: 뜱
CSS:
/* CSS content property */
.element::before {
content: "\00B731"; /* 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%9C%B1
MD5:
c58f37c75828cf3a987cb40923b9b25a
SHA1:
bc599d69388afe6822cc5ee4f4be48609d64f759
Base64:
65yx