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