C:
char c = '\uB36A';
printf("%c\n", c); // Output: 덪
JavaScript:
const char = '\uB36A';
console.log(char); // Output: 덪
Java:
char c = '\uB36A';
System.out.println(c); // Output: 덪
JSON:
{"text": "\uB36A"} // Value: 덪
Python:
char = '\uB36A'
print(char) # Output: 덪
Perl:
my $char = "\x{B36A}";
print $char; # Output: 덪
PHP:
$char = "\x{B36A}";
echo $char; // Output: 덪
Ruby:
char = "\u{B36A}"
puts char # Output: 덪
Rust:
let c = '\u{B36A}';
println!("{}", c); // Output: 덪
Go:
char := '\uB36A'
fmt.Printf("%c\n", char) // Output: 덪
CSS:
/* CSS content property */
.element::before {
content: "\00B36A"; /* 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%AA
MD5:
44de77d0f27c12320ecc4365aecc3c80
SHA1:
835a895effffa9ff24f4a6fdf31f2da728e9e6fd
Base64:
642q