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