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