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