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