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