C:
char c = '\uB407';
printf("%c\n", c); // Output: 됇
JavaScript:
const char = '\uB407';
console.log(char); // Output: 됇
Java:
char c = '\uB407';
System.out.println(c); // Output: 됇
JSON:
{"text": "\uB407"} // Value: 됇
Python:
char = '\uB407'
print(char) # Output: 됇
Perl:
my $char = "\x{B407}";
print $char; # Output: 됇
PHP:
$char = "\x{B407}";
echo $char; // Output: 됇
Ruby:
char = "\u{B407}"
puts char # Output: 됇
Rust:
let c = '\u{B407}';
println!("{}", c); // Output: 됇
Go:
char := '\uB407'
fmt.Printf("%c\n", char) // Output: 됇
CSS:
/* CSS content property */
.element::before {
content: "\00B407"; /* 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%90%87
MD5:
3c23a826919b1a49e73a286792e523e2
SHA1:
74db451a03959ff1b78d11c2146c60a276db2302
Base64:
65CH