C:
char c = '\uB356';
printf("%c\n", c); // Output: 덖
JavaScript:
const char = '\uB356';
console.log(char); // Output: 덖
Java:
char c = '\uB356';
System.out.println(c); // Output: 덖
JSON:
{"text": "\uB356"} // Value: 덖
Python:
char = '\uB356'
print(char) # Output: 덖
Perl:
my $char = "\x{B356}";
print $char; # Output: 덖
PHP:
$char = "\x{B356}";
echo $char; // Output: 덖
Ruby:
char = "\u{B356}"
puts char # Output: 덖
Rust:
let c = '\u{B356}';
println!("{}", c); // Output: 덖
Go:
char := '\uB356'
fmt.Printf("%c\n", char) // Output: 덖
CSS:
/* CSS content property */
.element::before {
content: "\00B356"; /* 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%8D%96
MD5:
c7987c420781963d5ade816a5b432f45
SHA1:
dc332493b642d22fa39084dc4cbe08f0c14d1370
Base64:
642W