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