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