C:
char c = '\uD6A1';
printf("%c\n", c); // Output: 횡
JavaScript:
const char = '\uD6A1';
console.log(char); // Output: 횡
Java:
char c = '\uD6A1';
System.out.println(c); // Output: 횡
JSON:
{"text": "\uD6A1"} // Value: 횡
Python:
char = '\uD6A1'
print(char) # Output: 횡
Perl:
my $char = "\x{D6A1}";
print $char; # Output: 횡
PHP:
$char = "\x{D6A1}";
echo $char; // Output: 횡
Ruby:
char = "\u{D6A1}"
puts char # Output: 횡
Rust:
let c = '\u{D6A1}';
println!("{}", c); // Output: 횡
Go:
char := '\uD6A1'
fmt.Printf("%c\n", char) // Output: 횡
CSS:
/* CSS content property */
.element::before {
content: "\00D6A1"; /* 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=%ED%9A%A1
MD5:
fd2d7e6911c9dd8b3f930c265b9e7c36
SHA1:
d73145f544e7fe28f14a8be6b672e94d7adb75da
Base64:
7Zqh