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