C:
char c = '\uD30E';
printf("%c\n", c); // Output: 팎
JavaScript:
const char = '\uD30E';
console.log(char); // Output: 팎
Java:
char c = '\uD30E';
System.out.println(c); // Output: 팎
JSON:
{"text": "\uD30E"} // Value: 팎
Python:
char = '\uD30E'
print(char) # Output: 팎
Perl:
my $char = "\x{D30E}";
print $char; # Output: 팎
PHP:
$char = "\x{D30E}";
echo $char; // Output: 팎
Ruby:
char = "\u{D30E}"
puts char # Output: 팎
Rust:
let c = '\u{D30E}';
println!("{}", c); // Output: 팎
Go:
char := '\uD30E'
fmt.Printf("%c\n", char) // Output: 팎
CSS:
/* CSS content property */
.element::before {
content: "\00D30E"; /* 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=%ED%8C%8E
MD5:
02555a3b54bedd120524fd3429b1ffde
SHA1:
a460b5e6cc7d6b07d88593928b89fc8eb4b5750b
Base64:
7YyO