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