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