C:
char c = '\uB3F3';
printf("%c\n", c); // Output: 돳
JavaScript:
const char = '\uB3F3';
console.log(char); // Output: 돳
Java:
char c = '\uB3F3';
System.out.println(c); // Output: 돳
JSON:
{"text": "\uB3F3"} // Value: 돳
Python:
char = '\uB3F3'
print(char) # Output: 돳
Perl:
my $char = "\x{B3F3}";
print $char; # Output: 돳
PHP:
$char = "\x{B3F3}";
echo $char; // Output: 돳
Ruby:
char = "\u{B3F3}"
puts char # Output: 돳
Rust:
let c = '\u{B3F3}';
println!("{}", c); // Output: 돳
Go:
char := '\uB3F3'
fmt.Printf("%c\n", char) // Output: 돳
CSS:
/* CSS content property */
.element::before {
content: "\00B3F3"; /* 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%8F%B3
MD5:
6bd56c0376e9ff9dfb5ea0a8ba998ae1
SHA1:
7ece9266dded5012da82feae507bd2e7711b8fbe
Base64:
64+z