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